Skip to content

Instantly share code, notes, and snippets.

@marcusti
Created September 9, 2012 07:49
Show Gist options
  • Select an option

  • Save marcusti/3683246 to your computer and use it in GitHub Desktop.

Select an option

Save marcusti/3683246 to your computer and use it in GitHub Desktop.
working with a private git repo in Wuala
# 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