git.rst
changeset 1092 639665016a27
parent 1089 2c23dfe7517e
child 1334 9bf0d5a1f0cf
equal deleted inserted replaced
1037:49735af70121 1092:639665016a27
   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
       
   189 
       
   190 Find most recent tag for revision.
       
   191 ==================================
       
   192 ::
       
   193 
       
   194   $ git describe $REV
   177 
   195 
   178 Using git to work with SVN offline.
   196 Using git to work with SVN offline.
   179 ===================================
   197 ===================================
   180 
   198 
   181 Prepare SVN and git utilities::
   199 Prepare SVN and git utilities::