# HG changeset patch # User Oleksandr Gavenko # Date 1320323774 -7200 # Node ID 9b2eb3c96d84356971bd5b3116cff4d0ba82898c # Parent 215246e1257205ae262bf2e75927c8a9ff940b08 Push new repo to remote. diff -r 215246e12572 -r 9b2eb3c96d84 git.rst --- a/git.rst Wed Nov 02 15:08:44 2011 +0200 +++ b/git.rst Thu Nov 03 14:36:14 2011 +0200 @@ -175,6 +175,18 @@ $ export GIT_CURL_VERBOSE=1 $ git ... +Push new repo to remote. +======================== +:: + + $ mkdir $REPO + $ cd $REPO + $ git init + $ git add . + $ git commit -m "Initial commit" + $ git remote add origin https://$USER:$PASS@$HOST/$REPO + $ git push -u origin master + Using git to work with SVN offline. ===================================