git.rst
changeset 833 2fc97313ce78
parent 832 d3b96f56c613
child 834 5bed6172a7c4
equal deleted inserted replaced
832:d3b96f56c613 833:2fc97313ce78
   137  create mode 100644 file
   137  create mode 100644 file
   138 
   138 
   139 or just
   139 or just
   140 
   140 
   141   $ git commit -a -m "Added clean target."
   141   $ git commit -a -m "Added clean target."
       
   142 
       
   143 * git analog of 'hg incoming'.
       
   144 
       
   145 git does not directly support such feature. You can emulate it by:
       
   146 
       
   147   $ git fetch
       
   148   $ git log master..origin/master   # or just '..origin/master'
       
   149 
       
   150 By previous commands you grab changes from remote server! You can apply them:
       
   151 
       
   152   TODO
       
   153   $ git merge
   142 
   154 
   143 * Using git to work with SVN offline.
   155 * Using git to work with SVN offline.
   144 
   156 
   145 Prepare SVN and git utilities:
   157 Prepare SVN and git utilities:
   146 
   158