Created
April 19, 2011 07:51
-
-
Save arnabc/926980 to your computer and use it in GitHub Desktop.
Gitosis repo creation ( it assumes that you have a working gitosis repository in a central server and have the permission to create new repositories)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~$ mkdir your_repo_name | |
~$ cd your_repo_name | |
~$ git init | |
~$ git remote add origin git@YOUR_SERVER_HOSTNAME:your_repo_name.git | |
# do some work, git add and commit files | |
~$ git add . | |
~$ git commit -m 'Your Message' | |
# push the new repo to central repository ( gitosis ) | |
~$ git push origin master:refs/heads/master | |
# Now if you try to push git will complain that it does not know which branch to push | |
# do this to set the 'master' as the default target for push/pull | |
~$ git config branch.master.remote origin | |
~$ git config branch.master.merge refs/heads/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment