git.rst
changeset 1076 9b2eb3c96d84
parent 1032 4decc3e00bb6
child 1089 2c23dfe7517e
equal deleted inserted replaced
1074:215246e12572 1076:9b2eb3c96d84
   172 
   172 
   173 Git uses libcurl for network operation::
   173 Git uses libcurl for network operation::
   174 
   174 
   175   $ export GIT_CURL_VERBOSE=1
   175   $ export GIT_CURL_VERBOSE=1
   176   $ git ...
   176   $ git ...
       
   177 
       
   178 Push new repo to remote.
       
   179 ========================
       
   180 ::
       
   181 
       
   182   $ mkdir $REPO
       
   183   $ cd $REPO
       
   184   $ git init
       
   185   $ git add .
       
   186   $ git commit -m "Initial commit"
       
   187   $ git remote add origin https://$USER:$PASS@$HOST/$REPO
       
   188   $ git push -u origin master
   177 
   189 
   178 Using git to work with SVN offline.
   190 Using git to work with SVN offline.
   179 ===================================
   191 ===================================
   180 
   192 
   181 Prepare SVN and git utilities::
   193 Prepare SVN and git utilities::