blob: 9677671892700ae246dcfe36dc806a548fafe2d2 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231Everyday GIT With 20 Commands Or So
2===================================
3
Junio C Hamano29f14312006-10-26 08:47:294<<Basic Repository>> commands are needed by people who have a
Junio C Hamano1a4e8412005-12-27 08:17:235repository --- that is everybody, because every working tree of
6git is a repository.
7
8In addition, <<Individual Developer (Standalone)>> commands are
9essential for anybody who makes a commit, even for somebody who
10works alone.
11
12If you work with other people, you will need commands listed in
Junio C Hamano29f14312006-10-26 08:47:2913the <<Individual Developer (Participant)>> section as well.
Junio C Hamano1a4e8412005-12-27 08:17:2314
Junio C Hamano29f14312006-10-26 08:47:2915People who play the <<Integrator>> role need to learn some more
Junio C Hamano1a4e8412005-12-27 08:17:2316commands in addition to the above.
17
18<<Repository Administration>> commands are for system
Junio C Hamano29f14312006-10-26 08:47:2919administrators who are responsible for the care and feeding
20of git repositories.
Junio C Hamano1a4e8412005-12-27 08:17:2321
22
23Basic Repository[[Basic Repository]]
24------------------------------------
25
Junio C Hamano29f14312006-10-26 08:47:2926Everybody uses these commands to maintain git repositories.
Junio C Hamano1a4e8412005-12-27 08:17:2327
28 * gitlink:git-init-db[1] or gitlink:git-clone[1] to create a
29 new repository.
30
Junio C Hamano29f14312006-10-26 08:47:2931 * gitlink:git-fsck-objects[1] to check the repository for errors.
Junio C Hamano1a4e8412005-12-27 08:17:2332
Junio C Hamano29f14312006-10-26 08:47:2933 * gitlink:git-prune[1] to remove unused objects in the repository.
Junio C Hamano1a4e8412005-12-27 08:17:2334
35 * gitlink:git-repack[1] to pack loose objects for efficiency.
36
37Examples
38~~~~~~~~
39
40Check health and remove cruft.::
41+
42------------
43$ git fsck-objects <1>
44$ git prune
45$ git count-objects <2>
46$ git repack <3>
47$ git prune <4>
Junio C Hamanoc8d88c22006-04-29 07:02:0148------------
49+
Junio C Hamano1a4e8412005-12-27 08:17:2350<1> running without "--full" is usually cheap and assures the
51repository health reasonably well.
52<2> check how many loose objects there are and how much
Junio C Hamanobb8fb052006-05-30 07:21:1253disk space is wasted by not repacking.
Junio C Hamano1a4e8412005-12-27 08:17:2354<3> without "-a" repacks incrementally. repacking every 4-5MB
55of loose objects accumulation may be a good rule of thumb.
56<4> after repack, prune removes the duplicate loose objects.
Junio C Hamano1a4e8412005-12-27 08:17:2357
58Repack a small project into single pack.::
59+
60------------
61$ git repack -a -d <1>
62$ git prune
Junio C Hamanoc8d88c22006-04-29 07:02:0163------------
64+
Junio C Hamano29f14312006-10-26 08:47:2965<1> pack all the objects reachable from the refs into one pack,
66then remove the other packs.
Junio C Hamano1a4e8412005-12-27 08:17:2367
68
69Individual Developer (Standalone)[[Individual Developer (Standalone)]]
70----------------------------------------------------------------------
71
72A standalone individual developer does not exchange patches with
Junio C Hamanobb8fb052006-05-30 07:21:1273other people, and works alone in a single repository, using the
Junio C Hamano1a4e8412005-12-27 08:17:2374following commands.
75
76 * gitlink:git-show-branch[1] to see where you are.
77
78 * gitlink:git-log[1] to see what happened.
79
Junio C Hamano1a4e8412005-12-27 08:17:2380 * gitlink:git-checkout[1] and gitlink:git-branch[1] to switch
81 branches.
82
83 * gitlink:git-add[1] and gitlink:git-update-index[1] to manage
84 the index file.
85
86 * gitlink:git-diff[1] and gitlink:git-status[1] to see what
87 you are in the middle of doing.
88
89 * gitlink:git-commit[1] to advance the current branch.
90
91 * gitlink:git-reset[1] and gitlink:git-checkout[1] (with
92 pathname parameters) to undo changes.
93
94 * gitlink:git-pull[1] with "." as the remote to merge between
95 local branches.
96
97 * gitlink:git-rebase[1] to maintain topic branches.
98
99 * gitlink:git-tag[1] to mark known point.
100
101Examples
102~~~~~~~~
103
Junio C Hamano29f14312006-10-26 08:47:29104Use a tarball as a starting point for a new repository:
Junio C Hamano1a4e8412005-12-27 08:17:23105+
106------------
107$ tar zxf frotz.tar.gz
108$ cd frotz
109$ git-init-db
110$ git add . <1>
111$ git commit -m 'import of frotz source tree.'
112$ git tag v2.43 <2>
Junio C Hamanoc8d88c22006-04-29 07:02:01113------------
114+
Junio C Hamano1a4e8412005-12-27 08:17:23115<1> add everything under the current directory.
116<2> make a lightweight, unannotated tag.
Junio C Hamano1a4e8412005-12-27 08:17:23117
118Create a topic branch and develop.::
119+
120------------
121$ git checkout -b alsa-audio <1>
122$ edit/compile/test
123$ git checkout -- curses/ux_audio_oss.c <2>
124$ git add curses/ux_audio_alsa.c <3>
125$ edit/compile/test
126$ git diff <4>
127$ git commit -a -s <5>
128$ edit/compile/test
129$ git reset --soft HEAD^ <6>
130$ edit/compile/test
131$ git diff ORIG_HEAD <7>
132$ git commit -a -c ORIG_HEAD <8>
133$ git checkout master <9>
134$ git pull . alsa-audio <10>
135$ git log --since='3 days ago' <11>
136$ git log v2.43.. curses/ <12>
Junio C Hamanoc8d88c22006-04-29 07:02:01137------------
138+
Junio C Hamano1a4e8412005-12-27 08:17:23139<1> create a new topic branch.
140<2> revert your botched changes in "curses/ux_audio_oss.c".
141<3> you need to tell git if you added a new file; removal and
142modification will be caught if you do "commit -a" later.
143<4> to see what changes you are committing.
144<5> commit everything as you have tested, with your sign-off.
145<6> take the last commit back, keeping what is in the working tree.
146<7> look at the changes since the premature commit we took back.
147<8> redo the commit undone in the previous step, using the message
148you originally wrote.
149<9> switch to the master branch.
150<10> merge a topic branch into your master branch
151<11> review commit logs; other forms to limit output can be
152combined and include --max-count=10 (show 10 commits), --until='2005-12-10'.
153<12> view only the changes that touch what's in curses/
154directory, since v2.43 tag.
Junio C Hamano1a4e8412005-12-27 08:17:23155
156
157Individual Developer (Participant)[[Individual Developer (Participant)]]
158------------------------------------------------------------------------
159
160A developer working as a participant in a group project needs to
161learn how to communicate with others, and uses these commands in
162addition to the ones needed by a standalone developer.
163
164 * gitlink:git-clone[1] from the upstream to prime your local
165 repository.
166
167 * gitlink:git-pull[1] and gitlink:git-fetch[1] from "origin"
168 to keep up-to-date with the upstream.
169
170 * gitlink:git-push[1] to shared repository, if you adopt CVS
171 style shared repository workflow.
172
173 * gitlink:git-format-patch[1] to prepare e-mail submission, if
174 you adopt Linux kernel-style public forum workflow.
175
176Examples
177~~~~~~~~
178
179Clone the upstream and work on it. Feed changes to upstream.::
180+
181------------
182$ git clone git://git.kernel.org/pub/scm/.../torvalds/linux-2.6 my2.6
183$ cd my2.6
184$ edit/compile/test; git commit -a -s <1>
185$ git format-patch origin <2>
186$ git pull <3>
Junio C Hamano29f14312006-10-26 08:47:29187$ git log -p ORIG_HEAD.. arch/i386 include/asm-i386 <4>
Junio C Hamano1a4e8412005-12-27 08:17:23188$ git pull git://git.kernel.org/pub/.../jgarzik/libata-dev.git ALL <5>
189$ git reset --hard ORIG_HEAD <6>
190$ git prune <7>
191$ git fetch --tags <8>
Junio C Hamanoc8d88c22006-04-29 07:02:01192------------
193+
Junio C Hamano1a4e8412005-12-27 08:17:23194<1> repeat as needed.
195<2> extract patches from your branch for e-mail submission.
196<3> "pull" fetches from "origin" by default and merges into the
197current branch.
198<4> immediately after pulling, look at the changes done upstream
199since last time we checked, only in the
200area we are interested in.
201<5> fetch from a specific branch from a specific repository and merge.
202<6> revert the pull.
203<7> garbage collect leftover objects from reverted pull.
204<8> from time to time, obtain official tags from the "origin"
205and store them under .git/refs/tags/.
Junio C Hamano1a4e8412005-12-27 08:17:23206
207
208Push into another repository.::
209+
210------------
211satellite$ git clone mothership:frotz/.git frotz <1>
212satellite$ cd frotz
213satellite$ cat .git/remotes/origin <2>
214URL: mothership:frotz/.git
215Pull: master:origin
216satellite$ echo 'Push: master:satellite' >>.git/remotes/origin <3>
217satellite$ edit/compile/test/commit
218satellite$ git push origin <4>
219
220mothership$ cd frotz
221mothership$ git checkout master
222mothership$ git pull . satellite <5>
Junio C Hamanoc8d88c22006-04-29 07:02:01223------------
224+
Junio C Hamano1a4e8412005-12-27 08:17:23225<1> mothership machine has a frotz repository under your home
226directory; clone from it to start a repository on the satellite
227machine.
228<2> clone creates this file by default. It arranges "git pull"
229to fetch and store the master branch head of mothership machine
230to local "origin" branch.
231<3> arrange "git push" to push local "master" branch to
232"satellite" branch of the mothership machine.
233<4> push will stash our work away on "satellite" branch on the
234mothership machine. You could use this as a back-up method.
235<5> on mothership machine, merge the work done on the satellite
236machine into the master branch.
Junio C Hamano1a4e8412005-12-27 08:17:23237
238Branch off of a specific tag.::
239+
240------------
241$ git checkout -b private2.6.14 v2.6.14 <1>
242$ edit/compile/test; git commit -a
243$ git checkout master
244$ git format-patch -k -m --stdout v2.6.14..private2.6.14 |
245 git am -3 -k <2>
Junio C Hamanoc8d88c22006-04-29 07:02:01246------------
247+
Junio C Hamano1a4e8412005-12-27 08:17:23248<1> create a private branch based on a well known (but somewhat behind)
249tag.
250<2> forward port all changes in private2.6.14 branch to master branch
251without a formal "merging".
Junio C Hamano1a4e8412005-12-27 08:17:23252
253
254Integrator[[Integrator]]
255------------------------
256
257A fairly central person acting as the integrator in a group
258project receives changes made by others, reviews and integrates
259them and publishes the result for others to use, using these
260commands in addition to the ones needed by participants.
261
262 * gitlink:git-am[1] to apply patches e-mailed in from your
263 contributors.
264
265 * gitlink:git-pull[1] to merge from your trusted lieutenants.
266
267 * gitlink:git-format-patch[1] to prepare and send suggested
268 alternative to contributors.
269
270 * gitlink:git-revert[1] to undo botched commits.
271
272 * gitlink:git-push[1] to publish the bleeding edge.
273
274
275Examples
276~~~~~~~~
277
278My typical GIT day.::
279+
280------------
281$ git status <1>
282$ git show-branch <2>
283$ mailx <3>
284& s 2 3 4 5 ./+to-apply
285& s 7 8 ./+hold-linus
286& q
287$ git checkout master
288$ git am -3 -i -s -u ./+to-apply <4>
289$ compile/test
290$ git checkout -b hold/linus && git am -3 -i -s -u ./+hold-linus <5>
291$ git checkout topic/one && git rebase master <6>
292$ git checkout pu && git reset --hard master <7>
293$ git pull . topic/one topic/two && git pull . hold/linus <8>
294$ git checkout maint
295$ git cherry-pick master~4 <9>
296$ compile/test
297$ git tag -s -m 'GIT 0.99.9x' v0.99.9x <10>
298$ git fetch ko && git show-branch master maint 'tags/ko-*' <11>
299$ git push ko <12>
300$ git push ko v0.99.9x <13>
Junio C Hamanoc8d88c22006-04-29 07:02:01301------------
302+
Junio C Hamano1a4e8412005-12-27 08:17:23303<1> see what I was in the middle of doing, if any.
304<2> see what topic branches I have and think about how ready
305they are.
306<3> read mails, save ones that are applicable, and save others
307that are not quite ready.
308<4> apply them, interactively, with my sign-offs.
309<5> create topic branch as needed and apply, again with my
310sign-offs.
311<6> rebase internal topic branch that has not been merged to the
312master, nor exposed as a part of a stable branch.
313<7> restart "pu" every time from the master.
314<8> and bundle topic branches still cooking.
315<9> backport a critical fix.
316<10> create a signed tag.
317<11> make sure I did not accidentally rewind master beyond what I
318already pushed out. "ko" shorthand points at the repository I have
319at kernel.org, and looks like this:
Junio C Hamano7da87bb2006-06-06 01:23:49320+
321------------
322$ cat .git/remotes/ko
323URL: kernel.org:/pub/scm/git/git.git
324Pull: master:refs/tags/ko-master
325Pull: maint:refs/tags/ko-maint
326Push: master
327Push: +pu
328Push: maint
329------------
330+
Junio C Hamano1a4e8412005-12-27 08:17:23331In the output from "git show-branch", "master" should have
332everything "ko-master" has.
Junio C Hamano7da87bb2006-06-06 01:23:49333
Junio C Hamano1a4e8412005-12-27 08:17:23334<12> push out the bleeding edge.
335<13> push the tag out, too.
Junio C Hamano1a4e8412005-12-27 08:17:23336
337
338Repository Administration[[Repository Administration]]
339------------------------------------------------------
340
341A repository administrator uses the following tools to set up
342and maintain access to the repository by developers.
343
344 * gitlink:git-daemon[1] to allow anonymous download from
345 repository.
346
347 * gitlink:git-shell[1] can be used as a 'restricted login shell'
348 for shared central repository users.
349
350link:howto/update-hook-example.txt[update hook howto] has a good
351example of managing a shared central repository.
352
353
354Examples
355~~~~~~~~
Junio C Hamanoa053d542006-10-27 09:29:13356We assume the following in /etc/services::
357+
358------------
359$ grep 9418 /etc/services
360git 9418/tcp # Git Version Control System
361------------
362
Junio C Hamano1a4e8412005-12-27 08:17:23363Run git-daemon to serve /pub/scm from inetd.::
364+
365------------
Junio C Hamanobb8fb052006-05-30 07:21:12366$ grep git /etc/inetd.conf
Junio C Hamano1a4e8412005-12-27 08:17:23367git stream tcp nowait nobody \
Junio C Hamano29f14312006-10-26 08:47:29368 /usr/bin/git-daemon git-daemon --inetd --export-all /pub/scm
Junio C Hamano1a4e8412005-12-27 08:17:23369------------
370+
371The actual configuration line should be on one line.
372
Junio C Hamano7da87bb2006-06-06 01:23:49373Run git-daemon to serve /pub/scm from xinetd.::
374+
375------------
376$ cat /etc/xinetd.d/git-daemon
377# default: off
378# description: The git server offers access to git repositories
379service git
380{
381 disable = no
382 type = UNLISTED
383 port = 9418
384 socket_type = stream
385 wait = no
386 user = nobody
387 server = /usr/bin/git-daemon
Junio C Hamano29f14312006-10-26 08:47:29388 server_args = --inetd --export-all --base-path=/pub/scm
Junio C Hamano7da87bb2006-06-06 01:23:49389 log_on_failure += USERID
390}
391------------
392+
393Check your xinetd(8) documentation and setup, this is from a Fedora system.
394Others might be different.
395
Junio C Hamano1a4e8412005-12-27 08:17:23396Give push/pull only access to developers.::
397+
398------------
399$ grep git /etc/passwd <1>
400alice:x:1000:1000::/home/alice:/usr/bin/git-shell
401bob:x:1001:1001::/home/bob:/usr/bin/git-shell
402cindy:x:1002:1002::/home/cindy:/usr/bin/git-shell
403david:x:1003:1003::/home/david:/usr/bin/git-shell
404$ grep git /etc/shells <2>
405/usr/bin/git-shell
Junio C Hamanoc8d88c22006-04-29 07:02:01406------------
407+
Junio C Hamano1a4e8412005-12-27 08:17:23408<1> log-in shell is set to /usr/bin/git-shell, which does not
409allow anything but "git push" and "git pull". The users should
410get an ssh access to the machine.
411<2> in many distributions /etc/shells needs to list what is used
412as the login shell.
Junio C Hamano1a4e8412005-12-27 08:17:23413
414CVS-style shared repository.::
415+
416------------
417$ grep git /etc/group <1>
418git:x:9418:alice,bob,cindy,david
419$ cd /home/devo.git
420$ ls -l <2>
421 lrwxrwxrwx 1 david git 17 Dec 4 22:40 HEAD -> refs/heads/master
422 drwxrwsr-x 2 david git 4096 Dec 4 22:40 branches
423 -rw-rw-r-- 1 david git 84 Dec 4 22:40 config
424 -rw-rw-r-- 1 david git 58 Dec 4 22:40 description
425 drwxrwsr-x 2 david git 4096 Dec 4 22:40 hooks
426 -rw-rw-r-- 1 david git 37504 Dec 4 22:40 index
427 drwxrwsr-x 2 david git 4096 Dec 4 22:40 info
428 drwxrwsr-x 4 david git 4096 Dec 4 22:40 objects
429 drwxrwsr-x 4 david git 4096 Nov 7 14:58 refs
430 drwxrwsr-x 2 david git 4096 Dec 4 22:40 remotes
431$ ls -l hooks/update <3>
432 -r-xr-xr-x 1 david git 3536 Dec 4 22:40 update
433$ cat info/allowed-users <4>
434refs/heads/master alice\|cindy
435refs/heads/doc-update bob
436refs/tags/v[0-9]* david
Junio C Hamanoc8d88c22006-04-29 07:02:01437------------
438+
Junio C Hamano1a4e8412005-12-27 08:17:23439<1> place the developers into the same git group.
440<2> and make the shared repository writable by the group.
441<3> use update-hook example by Carl from Documentation/howto/
442for branch policy control.
443<4> alice and cindy can push into master, only bob can push into doc-update.
444david is the release manager and is the only person who can
445create and push version tags.
Junio C Hamano1a4e8412005-12-27 08:17:23446
447HTTP server to support dumb protocol transfer.::
448+
449------------
450dev$ git update-server-info <1>
451dev$ ftp user@isp.example.com <2>
452ftp> cp -r .git /home/user/myproject.git
Junio C Hamanoc8d88c22006-04-29 07:02:01453------------
454+
Junio C Hamano1a4e8412005-12-27 08:17:23455<1> make sure your info/refs and objects/info/packs are up-to-date
456<2> upload to public HTTP server hosted by your ISP.