Created
September 9, 2012 07:49
-
-
Save marcusti/3683246 to your computer and use it in GitHub Desktop.
working with a private git repo in Wuala
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
| # create a new bare git repository | |
| cd ~/WualaDrive/username/repos | |
| mkdir project.git | |
| cd project.git | |
| git init --bare | |
| # clone | |
| cd ~/src | |
| git clone ~/WualaDrive/username/repos/project.git/ | |
| cd project.git | |
| git remote rename origin wuala | |
| # edit, commit ... | |
| # push | |
| git push wuala master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment