If I clone a GIT Repository from GITHUB via HTTP:// I see something like this:
Code:
# git clone http://url ./ttt.git
Initialized empty Git repository in /home/repo/temp/ttt.git/.git/
remote: Counting objects: 62188, done.
remote: Compressing objects: 100% (28798/28798), done.
remote: Total 62188 (delta 51922), reused 41550 (delta 33296)
Receiving objects: 100% (62188/62188), 34.82 MiB | 212 KiB/s, done.
Resolving deltas: 100% (51922/51922), done.
#
I built my own local GIT Repository Server and when I clone from it I get:
Code:
# git clone http://192.168.0.101/source.git ./source.git
Initialized empty Git repository in /home/repos/temp/source.git/.git/
#
This did succeed, but why do I not get the Progress Indicator on my GIT Repository over HTTP and yet GitHub HTTP works with no problems?
Additional Info:
- Dist = Slackware 13.1
- Web Server = apache (with distribution)
- Git Ver = 1.7.1 (with distribution)
- I turned on DAV on the repository and it made no difference