author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 22 Apr 2014 15:09:03 +0300 | |
changeset 1572 | 692f515b3e79 |
parent 1334 | 9bf0d5a1f0cf |
child 1641 | 04e215a475e0 |
permissions | -rw-r--r-- |
1002 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1089
diff
changeset
|
2 |
.. include:: HEADER.rst |
1002 | 3 |
|
4 |
====== |
|
5 |
Git. |
|
6 |
====== |
|
1032
4decc3e00bb6
Fix coding and contents.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1002
diff
changeset
|
7 |
.. contents:: |
1002 | 8 |
|
9 |
Setup git. |
|
10 |
========== |
|
11 |
||
12 |
Debian. |
|
13 |
------- |
|
14 |
||
15 |
For Etch Degian release use git-core package from backports, |
|
16 |
old 1.4 version of git very dumb compared to new version 1.5:: |
|
17 |
||
18 |
$ sudo apt-get install git-core |
|
19 |
||
20 |
After install setup some options:: |
|
21 |
||
22 |
$ git config --global user.name "Oleksandr Gavenko" |
|
23 |
$ git config --global user.mail "gavenkoa@gmail.com" |
|
24 |
$ cat ~/.gitconfig |
|
25 |
[user] |
|
26 |
name = Oleksandr Gavenko |
|
27 |
mail = gavenkoa@gmail.com |
|
28 |
||
29 |
Windows. |
|
30 |
-------- |
|
31 |
||
32 |
No official support for Windows OS. |
|
33 |
||
34 |
Cygwin. |
|
35 |
------- |
|
36 |
||
37 |
$ setup.exe -p git |
|
38 |
||
39 |
git over proxy. |
|
40 |
=============== |
|
41 |
||
42 |
Only http:// protocol support proxy (not git://):: |
|
43 |
||
44 |
$ export http_proxy="http://username:password@proxy:port/" |
|
45 |
$ git clone http://github.com/$user/$proj.git $proj |
|
46 |
||
47 |
You can store proxy settings under repository local config file:: |
|
48 |
||
49 |
$ git config http.proxy http://$user:$passwd@$ip:$port |
|
50 |
||
51 |
Start your project. |
|
52 |
=================== |
|
53 |
||
54 |
Setup proj space on fs:: |
|
55 |
||
56 |
$ mkdir proj |
|
57 |
$ cd proj |
|
58 |
$ git init |
|
59 |
Initialized empty Git repository in /home/user/tmp/proj/.git/ |
|
60 |
$ ls -a |
|
61 |
. .. .git |
|
62 |
||
63 |
Add file, make changes, commit all:: |
|
64 |
||
65 |
$ emacs Makefile |
|
66 |
... C-x C-c |
|
67 |
$ emacs app.c |
|
68 |
... C-x C-c |
|
69 |
$ git add Makefile app.c |
|
70 |
$ git status |
|
71 |
# On branch master |
|
72 |
# |
|
73 |
# Initial commit |
|
74 |
# |
|
75 |
# Changes to be committed: |
|
76 |
# (use "git rm --cached <file>..." to unstage) |
|
77 |
# |
|
78 |
# new file: Makefile |
|
79 |
# new file: app.c |
|
80 |
# |
|
81 |
||
82 |
or just:: |
|
83 |
||
84 |
$ git add . |
|
85 |
||
86 |
Commit newlly added file:: |
|
87 |
||
88 |
$ git commit |
|
89 |
... Write message log ... |
|
90 |
Created initial commit 2169263: My first commit massage. |
|
91 |
1 files changed, 4 insertions(+), 0 deletions(-) |
|
92 |
create mode 100644 app.c |
|
93 |
||
94 |
Undo tracking added file. |
|
95 |
========================= |
|
96 |
||
97 |
You do:: |
|
98 |
||
99 |
$ git add badfile |
|
100 |
$ git status |
|
101 |
# On branch master |
|
102 |
# Changes to be committed: |
|
103 |
# (use "git reset HEAD <file>..." to unstage) |
|
104 |
# |
|
105 |
# new file: badfile |
|
106 |
# |
|
107 |
||
108 |
To stop tracking badfile do:: |
|
109 |
||
110 |
$ git rm --cached badfile |
|
111 |
$ git status |
|
112 |
# On branch master |
|
113 |
# Untracked files: |
|
114 |
# (use "git add <file>..." to include in what will be committed) |
|
115 |
# |
|
116 |
# file |
|
117 |
nothing added to commit but untracked files present (use "git add" to track) |
|
118 |
||
119 |
or:: |
|
120 |
||
121 |
$ git reset badfile |
|
122 |
||
123 |
Doing changes. |
|
124 |
============== |
|
125 |
:: |
|
126 |
||
127 |
$ printf "clean:\n<TAB>rm $(wildcard *.o)\n" >>Makefile |
|
128 |
$ git diff |
|
129 |
diff --git a/Makefile b/Makefile |
|
130 |
index e84f7e9..cd2438a 100644 |
|
131 |
--- a/Makefile |
|
132 |
+++ b/Makefile |
|
133 |
@@ -1,2 +1,5 @@ |
|
134 |
all: |
|
135 |
@echo XXX |
|
136 |
exit 1 |
|
137 |
+ |
|
138 |
+clean: |
|
139 |
+ rm -f *.o |
|
140 |
$ git add Makefile |
|
141 |
$ git commit -m "Added clean target." |
|
142 |
Created commit 11272b9: Added clean target. |
|
143 |
1 files changed, 1 insertions(+), 0 deletions(-) |
|
144 |
create mode 100644 file |
|
145 |
||
146 |
or just:: |
|
147 |
||
148 |
$ git commit -a -m "Added clean target." |
|
149 |
||
150 |
git analog of 'hg incoming'. |
|
151 |
============================ |
|
152 |
||
153 |
git does not directly support such feature. You can emulate it by:: |
|
154 |
||
155 |
$ git fetch |
|
156 |
$ git log master..origin/master # or just '..origin/master' |
|
157 |
||
158 |
By previous commands you grab changes from remote server! You can apply them:: |
|
159 |
||
160 |
TODO |
|
161 |
$ git merge |
|
162 |
||
163 |
git analog of 'hg outgoing'. |
|
164 |
============================ |
|
165 |
||
166 |
git does not directly support such feature. You can emulate it by:: |
|
167 |
||
168 |
$ git fetch |
|
169 |
$ git log origin/master..master # or just 'origin/master..' |
|
170 |
||
171 |
Debug git network operation. |
|
172 |
============================ |
|
173 |
||
174 |
Git uses libcurl for network operation:: |
|
175 |
||
176 |
$ export GIT_CURL_VERBOSE=1 |
|
177 |
$ git ... |
|
178 |
||
1076
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
179 |
Push new repo to remote. |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
180 |
======================== |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
181 |
:: |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
182 |
|
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
183 |
$ mkdir $REPO |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
184 |
$ cd $REPO |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
185 |
$ git init |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
186 |
$ git add . |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
187 |
$ git commit -m "Initial commit" |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
188 |
$ git remote add origin https://$USER:$PASS@$HOST/$REPO |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
189 |
$ git push -u origin master |
9b2eb3c96d84
Push new repo to remote.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1032
diff
changeset
|
190 |
|
1089
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
191 |
Find most recent tag for revision. |
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
192 |
================================== |
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
193 |
:: |
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
194 |
|
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
195 |
$ git describe $REV |
2c23dfe7517e
Find most recent tag for revision.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1076
diff
changeset
|
196 |
|
1002 | 197 |
Using git to work with SVN offline. |
198 |
=================================== |
|
199 |
||
200 |
Prepare SVN and git utilities:: |
|
201 |
||
202 |
$ sudo apt-get svn git-core git-svn |
|
203 |
||
204 |
Making SVN repo:: |
|
205 |
||
206 |
$ cd $HOME/tmp |
|
207 |
$ svnadmin create svn-repo |
|
208 |
$ svn co file://$HOME/tmp/svn-repo svn-devel |
|
209 |
$ cd svn-devel |
|
210 |
$ mkdir tags trunk branches |
|
211 |
$ svn add * |
|
212 |
A branches |
|
213 |
A tags |
|
214 |
A trunk |
|
215 |
$ cd trunk/ |
|
216 |
$ printf "all:\n echo XXX\n" >Makefile |
|
217 |
$ printf "int main() {return 0;}" >main.c |
|
218 |
$ svn add * |
|
219 |
$ cd .. |
|
220 |
$ svn st |
|
221 |
A trunk |
|
222 |
A trunk/main.c |
|
223 |
A trunk/Makefile |
|
224 |
A branches |
|
225 |
A tags |
|
226 |
$ svn ci -m init |
|
227 |
Adding branches |
|
228 |
Adding tags |
|
229 |
Adding trunk |
|
230 |
Adding trunk/Makefile |
|
231 |
Adding trunk/main.c |
|
232 |
Transmitting file data .. |
|
233 |
$ svn cp -m v0.0 file://$HOME/tmp/svn/trunk file://$HOME/tmp/svn/tags/v0.0 |
|
234 |
$ svn cp -m v0.1 file://$HOME/tmp/svn/trunk file://$HOME/tmp/svn/branches/v0.1 |
|
235 |
||
236 |
Moving SVN changset to git repo:: |
|
237 |
||
238 |
$ cd $HOME/tmp |
|
239 |
$ git svn init file://$HOME/tmp/svn git-repo |
|
240 |
$ ls -a |
|
241 |
. .. .git |
|
242 |
$ git svn fetch |
|
243 |
A trunk/main.c |
|
244 |
A trunk/Makefile |
|
245 |
W: +empty_dir: branches |
|
246 |
W: +empty_dir: tags |
|
247 |
r1 = 52ccd9882979dd53ec198dbac108783ec660410f (git-svn) |
|
248 |
A tags/v0.0/main.c |
|
249 |
A tags/v0.0/Makefile |
|
250 |
r2 = 8ec8a772bb6f37ace56b3649066dc84e481ed427 (git-svn) |
|
251 |
M trunk/Makefile |
|
252 |
r3 = 2c169ff409ed504dd6a092b1e302beb3fd94871e (git-svn) |
|
253 |
A branches/v0.1/main.c |
|
254 |
A branches/v0.1/Makefile |
|
255 |
r4 = e68d76f4ba6beea4b9059c1884c1f38ce10831a7 (git-svn) |
|
256 |
M trunk/Makefile |
|
257 |
r5 = cdde63974454b13ac53f2eeb201aa76c49fd875c (git-svn) |
|
258 |
Checked out HEAD: |
|
259 |
file:///home/sasha/tmp/svn r5 |
|
260 |
||
261 |
or (in old git version):: |
|
262 |
||
263 |
$ git svn clone file://$HOME/tmp/svn git-repo |
|
264 |
||
265 |
Making changes in svn:: |
|
266 |
||
267 |
$ cd $HOME/tmp/svn-devel/trunk |
|
268 |
$ echo ".PHONY: clean" >>Makefile |
|
269 |
$ svn ci -m "Added clean to phony." |
|
270 |
Sending trunk/Makefile |
|
271 |
Transmitting file data . |
|
272 |
Committed revision 6. |
|
273 |
||
274 |
Making committed in git:: |
|
275 |
||
276 |
$ cd $HOME/tmp/git-repo/trunk |
|
277 |
$ echo ".PHONY: all" >>Makefile |
|
278 |
$ echo "int foo(int x) {return x+x;}" >>main.c |
|
279 |
$ git status |
|
280 |
# On branch master |
|
281 |
# Changed but not updated: |
|
282 |
# (use "git add <file>..." to update what will be committed) |
|
283 |
# |
|
284 |
# modified: Makefile |
|
285 |
# modified: main.c |
|
286 |
# |
|
287 |
no changes added to commit (use "git add" and/or "git commit -a") |
|
288 |
$ git commit -a -m "Bug fixed." |
|
289 |
Created commit 222d399: Bug fixed. |
|
290 |
2 files changed, 2 insertions(+), 0 deletions(-) |
|
291 |
||
292 |
Getting changes from SVN to git:: |
|
293 |
||
294 |
$ git svn rebase |
|
295 |
M trunk/Makefile |
|
296 |
r6 = 8165e9bfb38e9df09a7313d19606ec227629b670 (git-svn) |
|
297 |
First, rewinding head to replay your work on top of it... |
|
298 |
Applying Bug fixed. |
|
299 |
error: patch failed: trunk/Makefile:6 |
|
300 |
error: trunk/Makefile: patch does not apply |
|
301 |
Using index info to reconstruct a base tree... |
|
302 |
Falling back to patching base and 3-way merge... |
|
303 |
Auto-merged trunk/Makefile |
|
304 |
CONFLICT (content): Merge conflict in trunk/Makefile |
|
305 |
Failed to merge in the changes. |
|
306 |
Patch failed at 0001. |
|
307 |
||
308 |
When you have resolved this problem run "git rebase --continue". |
|
309 |
If you would prefer to skip this patch, instead run "git rebase --skip". |
|
310 |
To restore the original branch and stop rebasing run "git rebase --abort". |
|
311 |
||
312 |
rebase refs/remotes/git-svn: command returned error: 1 |
|
313 |
$ git add Makefile |
|
314 |
$ git rebase --continue |
|
315 |
Applying Bug fixed. |
|
316 |
||
317 |
and return all from git to SVN:: |
|
318 |
||
319 |
$ git svn dcommit |
|
320 |
Committing to file:///home/sasha/tmp/svn ... |
|
321 |
M trunk/Makefile |
|
322 |
M trunk/main.c |
|
323 |
Committed r7 |
|
324 |
M trunk/main.c |
|
325 |
M trunk/Makefile |
|
326 |
r7 = 68e782c8d06635f2db4dd69b9ca8599f99da22e2 (git-svn) |
|
327 |
No changes between current HEAD and refs/remotes/git-svn |
|
328 |
Resetting to the latest refs/remotes/git-svn |
|
329 |
||
330 |
See what going to SVN repo:: |
|
331 |
||
332 |
$ cd $HOME/tmp/svn-devel/trunk |
|
333 |
$ svn diff -r BASE:HEAD |
|
334 |
Index: Makefile |
|
335 |
=================================================================== |
|
336 |
--- Makefile (working copy) |
|
337 |
+++ Makefile (revision 7) |
|
338 |
@@ -6,4 +6,4 @@ |
|
339 |
.o: .c |
|
340 |
$(CC) $(CFLAGS) -c -o $@ $< |
|
341 |
||
342 |
-.PHONY: clean |
|
343 |
+.PHONY: all clean |
|
344 |
Index: main.c |
|
345 |
=================================================================== |
|
346 |
--- main.c (working copy) |
|
347 |
+++ main.c (revision 7) |
|
348 |
@@ -2,3 +2,4 @@ |
|
349 |
{ |
|
350 |
return 0; |
|
351 |
} |
|
352 |
+int foo(int x) {return x+x;} |
|
353 |
$ svn up |
|
354 |
U Makefile |
|
355 |
U main.c |
|
356 |
Updated to revision 7. |
|
357 |
||
358 |
gitk. |
|
359 |
===== |
|
360 |
||
361 |
gitk - The git repository browser. See gitk(1). |
|
362 |
||
363 |
Installing:: |
|
364 |
||
365 |
$ sudo apt-get instal gitk |
|
366 |
||
367 |
Using:: |
|
368 |
||
369 |
$ cd /path/to/git-repo |
|
370 |
$ gitk |
|
371 |