I have set up a linux box with a Git repository (using xinetd).
I have enabled receive-pack for the git daemon to enable pushing to the repository.
Here's my current testing workflow:
- On git server, run:
mkdir something
cd something
git init --bare
- On a client box:
git clone git://server/repo
(msg about cloning an empty repository)
Perform some commits to the cloned repository.
git push
getting this msg:
Counting objects: 8, done.
Compressing objects: 100% (3/3) done,
Writing objects: 100% (6/6)
This does not finish. I have introduced only a small change, so this should be completed very quickly.
am i doing something wrong here?