equal
deleted
inserted
replaced
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 |