I'm trying to get started using git. Our project is in a directory with a base development system. I've got it set up great for myself, but I can't get the files over to my collaborators.
We can't do a git clone since it has to clone to an empty directory.
I tried initializing a repository in the dev directory on one of the systems, adding a remote to my repo, then running git-fetch. It did a lot of computing and downloading, but in the end, .git/ ended up with lots of stuff, but the files in the dev directory remain untouched. ls-files shows nothing.
I expected the fetch to pull down all the files. What am I misunderstanding here?