Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

(1) I have a non-empty directory (eg /etc/something) with files that cannot be renamed, moved, or deleted.

(2) I want to check this directory into git in place.

(3) I want to be able to push the state of this repository to a remote repository (on another machine) using "git push" or something similar.

This is trivial using Subversion (currently we do it using Subversion) using:

svn mkdir <url> -m <msg>
cd <localdir>
svn co <url> .
svn add <files etc>
svn commit -m <msg>

What is the git equivalent?

Can I "git clone" into an empty directory and simply move the .git directory and have everything work?

Thanx,

-H-

share|improve this question
Maybe I just don't get it, but cannot you just run git init inside the local directory? – Philipp Jul 22 '10 at 17:51
Do you mean that you have a repo somewhere else, and you want to add to that repo all the contents of this other directory which is not a repo? Or are you just trying to create a new repo in that directory? – Jefromi Jul 22 '10 at 17:54

1 Answer

up vote 38 down vote accepted

Given you've set up a git daemon on <url> and an empty repository:

cd <localdir>
git init
git add .
git commit -m 'message'
git remote add origin <url>
git push -u origin master
share|improve this answer
2  
abyx's instructions appears to work. Do I now run: git config branch.master.remote origin and git config branch.master.merge refs/heads/master and what I will end up with will be exactly the same as if I cloned the remote repository? ie git pull and git push will just work? – HMW Jul 22 '10 at 18:53
@HMW Indeed, that's just it! – abyx Jul 22 '10 at 19:07
thanks. this works – honcheng Jul 9 '11 at 9:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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