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