Last updated
I am a newbie to git and did the following:
On the server i did the following:
git init --bare git-repo1
git update-server-info
on the client did the following
git clone [URL]http://user@machine/url[/URL]
create a new-directory test1
git add
git commit -m "test"
git push origin master go no exceptions but when tried to view the test1 directory in the browser cannot see the directory "test1".
(when clone again, we do see the test1 dir, but don't understand why we don't see in browser)