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.

Can some one please explain what a barebones repo is? And how I can setup one in my dropbox to store to? There are other questions mentioning to do this, but I can't seem to get a clear explanation of a what a barebones repo is, where to set it up (except for the recommendation of in your dropbox to allow for backup - which is a good idea and why I'm asking) and how to integrate it into my workflow.

Thanks!

share|improve this question

1 Answer

up vote 4 down vote accepted

You're probably thinking of a "bare" repo, which is a Git repo without an attached working directory. You can create one using git --bare init or git clone --bare.

Since it doesn't have a working directory, you can't edit files with it, but you can push into and pull from it.

share|improve this answer

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.