Essentially I'm looking to use git as a download command. I have a project on a centralized server and I'd like to set up an easy way download the project. I would assume that I can set up a git repo on the server and then run git clone locally and that will work but my knowledge and understanding of git is severely lacking apparently. Here is what I'm:

in the directory on the server I run:

// set up the git repo in directory named test
git init
git add .
git commit -m "add are all the files"

then locally I should be able to run git clone http://path/to/directory/test.git (according to the specifications of the host)

But this just gives me an empty repo. I've looked at several tutorials but there seems to be a leap between the intro tutorials and doing what I want to do. What am I missing?

There seem to be a lot of questions so I created a chat room: http://chat.stackoverflow.com/rooms/5635/creating-a-git-repo-to-clone-from

link|improve this question

78% accept rate
Are there actually any files in that folder? – Matt Ball Dec 6 '11 at 22:35
yes there are files in the directory. – Daniel Nill Dec 6 '11 at 22:37
So what do you mean by "it gives me an empty repo" then? – Matt Ball Dec 6 '11 at 22:37
the clone command downloads an empty directory to the local computer. – Daniel Nill Dec 6 '11 at 22:38
what does git ls-files or gitk --all & show on local computer? – Luke Hutton Dec 6 '11 at 22:41
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

On your server, create a "bare" repo (one without a local working copy)

git init . --bare

Then on your client, bootstrap your repo, and push it

git init .
touch .gitignore
git add .gitignore
git commit -m "init my repo"
git add remote origin git://my-git-server.example.com/my_repo.git
git push origin master

Once you've done that, other clients will be able to do a

git clone git://my-git-server.example.com/my_repo.git
link|improve this answer
feedback

If your HTTP server is not configured to understand Git, it’s using the dumb HTTP protocol, and you must run git update-server-info before it will be served.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.