Merge branch 'maint-1.6.0' into maint-1.6.1
[git/dscho.git] / Documentation / gittutorial.txt
blob458fafdb2cc7e54c5e2f49ca5854e6ec9fe581ee
1 gittutorial(7)
2 ==============
4 NAME
5 ----
6 gittutorial - A tutorial introduction to git (for version 1.5.1 or newer)
8 SYNOPSIS
9 --------
10 git *
12 DESCRIPTION
13 -----------
15 This tutorial explains how to import a new project into git, make
16 changes to it, and share changes with other developers.
18 If you are instead primarily interested in using git to fetch a project,
19 for example, to test the latest version, you may prefer to start with
20 the first two chapters of link:user-manual.html[The Git User's Manual].
22 First, note that you can get documentation for a command such as
23 `git log --graph` with:
25 ------------------------------------------------
26 $ man git-log
27 ------------------------------------------------
29 or:
31 ------------------------------------------------
32 $ git help log
33 ------------------------------------------------
35 With the latter, you can use the manual viewer of your choice; see
36 linkgit:git-help[1] for more information.
38 It is a good idea to introduce yourself to git with your name and
39 public email address before doing any operation.  The easiest
40 way to do so is:
42 ------------------------------------------------
43 $ git config --global user.name "Your Name Comes Here"
44 $ git config --global user.email you@yourdomain.example.com
45 ------------------------------------------------
48 Importing a new project
49 -----------------------
51 Assume you have a tarball project.tar.gz with your initial work.  You
52 can place it under git revision control as follows.
54 ------------------------------------------------
55 $ tar xzf project.tar.gz
56 $ cd project
57 $ git init
58 ------------------------------------------------
60 Git will reply
62 ------------------------------------------------
63 Initialized empty Git repository in .git/
64 ------------------------------------------------
66 You've now initialized the working directory--you may notice a new
67 directory created, named ".git".
69 Next, tell git to take a snapshot of the contents of all files under the
70 current directory (note the '.'), with 'git-add':
72 ------------------------------------------------
73 $ git add .
74 ------------------------------------------------
76 This snapshot is now stored in a temporary staging area which git calls
77 the "index".  You can permanently store the contents of the index in the
78 repository with 'git-commit':
80 ------------------------------------------------
81 $ git commit
82 ------------------------------------------------
84 This will prompt you for a commit message.  You've now stored the first
85 version of your project in git.
87 Making changes
88 --------------
90 Modify some files, then add their updated contents to the index:
92 ------------------------------------------------
93 $ git add file1 file2 file3
94 ------------------------------------------------
96 You are now ready to commit.  You can see what is about to be committed
97 using 'git-diff' with the --cached option:
99 ------------------------------------------------
100 $ git diff --cached
101 ------------------------------------------------
103 (Without --cached, 'git-diff' will show you any changes that
104 you've made but not yet added to the index.)  You can also get a brief
105 summary of the situation with 'git-status':
107 ------------------------------------------------
108 $ git status
109 # On branch master
110 # Changes to be committed:
111 #   (use "git reset HEAD <file>..." to unstage)
113 #       modified:   file1
114 #       modified:   file2
115 #       modified:   file3
117 ------------------------------------------------
119 If you need to make any further adjustments, do so now, and then add any
120 newly modified content to the index.  Finally, commit your changes with:
122 ------------------------------------------------
123 $ git commit
124 ------------------------------------------------
126 This will again prompt you for a message describing the change, and then
127 record a new version of the project.
129 Alternatively, instead of running 'git-add' beforehand, you can use
131 ------------------------------------------------
132 $ git commit -a
133 ------------------------------------------------
135 which will automatically notice any modified (but not new) files, add
136 them to the index, and commit, all in one step.
138 A note on commit messages: Though not required, it's a good idea to
139 begin the commit message with a single short (less than 50 character)
140 line summarizing the change, followed by a blank line and then a more
141 thorough description.  Tools that turn commits into email, for
142 example, use the first line on the Subject: line and the rest of the
143 commit in the body.
145 Git tracks content not files
146 ----------------------------
148 Many revision control systems provide an `add` command that tells the
149 system to start tracking changes to a new file.  Git's `add` command
150 does something simpler and more powerful: 'git-add' is used both for new
151 and newly modified files, and in both cases it takes a snapshot of the
152 given files and stages that content in the index, ready for inclusion in
153 the next commit.
155 Viewing project history
156 -----------------------
158 At any point you can view the history of your changes using
160 ------------------------------------------------
161 $ git log
162 ------------------------------------------------
164 If you also want to see complete diffs at each step, use
166 ------------------------------------------------
167 $ git log -p
168 ------------------------------------------------
170 Often the overview of the change is useful to get a feel of
171 each step
173 ------------------------------------------------
174 $ git log --stat --summary
175 ------------------------------------------------
177 Managing branches
178 -----------------
180 A single git repository can maintain multiple branches of
181 development.  To create a new branch named "experimental", use
183 ------------------------------------------------
184 $ git branch experimental
185 ------------------------------------------------
187 If you now run
189 ------------------------------------------------
190 $ git branch
191 ------------------------------------------------
193 you'll get a list of all existing branches:
195 ------------------------------------------------
196   experimental
197 * master
198 ------------------------------------------------
200 The "experimental" branch is the one you just created, and the
201 "master" branch is a default branch that was created for you
202 automatically.  The asterisk marks the branch you are currently on;
203 type
205 ------------------------------------------------
206 $ git checkout experimental
207 ------------------------------------------------
209 to switch to the experimental branch.  Now edit a file, commit the
210 change, and switch back to the master branch:
212 ------------------------------------------------
213 (edit file)
214 $ git commit -a
215 $ git checkout master
216 ------------------------------------------------
218 Check that the change you made is no longer visible, since it was
219 made on the experimental branch and you're back on the master branch.
221 You can make a different change on the master branch:
223 ------------------------------------------------
224 (edit file)
225 $ git commit -a
226 ------------------------------------------------
228 at this point the two branches have diverged, with different changes
229 made in each.  To merge the changes made in experimental into master, run
231 ------------------------------------------------
232 $ git merge experimental
233 ------------------------------------------------
235 If the changes don't conflict, you're done.  If there are conflicts,
236 markers will be left in the problematic files showing the conflict;
238 ------------------------------------------------
239 $ git diff
240 ------------------------------------------------
242 will show this.  Once you've edited the files to resolve the
243 conflicts,
245 ------------------------------------------------
246 $ git commit -a
247 ------------------------------------------------
249 will commit the result of the merge. Finally,
251 ------------------------------------------------
252 $ gitk
253 ------------------------------------------------
255 will show a nice graphical representation of the resulting history.
257 At this point you could delete the experimental branch with
259 ------------------------------------------------
260 $ git branch -d experimental
261 ------------------------------------------------
263 This command ensures that the changes in the experimental branch are
264 already in the current branch.
266 If you develop on a branch crazy-idea, then regret it, you can always
267 delete the branch with
269 -------------------------------------
270 $ git branch -D crazy-idea
271 -------------------------------------
273 Branches are cheap and easy, so this is a good way to try something
274 out.
276 Using git for collaboration
277 ---------------------------
279 Suppose that Alice has started a new project with a git repository in
280 /home/alice/project, and that Bob, who has a home directory on the
281 same machine, wants to contribute.
283 Bob begins with:
285 ------------------------------------------------
286 bob$ git clone /home/alice/project myrepo
287 ------------------------------------------------
289 This creates a new directory "myrepo" containing a clone of Alice's
290 repository.  The clone is on an equal footing with the original
291 project, possessing its own copy of the original project's history.
293 Bob then makes some changes and commits them:
295 ------------------------------------------------
296 (edit files)
297 bob$ git commit -a
298 (repeat as necessary)
299 ------------------------------------------------
301 When he's ready, he tells Alice to pull changes from the repository
302 at /home/bob/myrepo.  She does this with:
304 ------------------------------------------------
305 alice$ cd /home/alice/project
306 alice$ git pull /home/bob/myrepo master
307 ------------------------------------------------
309 This merges the changes from Bob's "master" branch into Alice's
310 current branch.  If Alice has made her own changes in the meantime,
311 then she may need to manually fix any conflicts.  (Note that the
312 "master" argument in the above command is actually unnecessary, as it
313 is the default.)
315 The "pull" command thus performs two operations: it fetches changes
316 from a remote branch, then merges them into the current branch.
318 Note that in general, Alice would want her local changes committed before
319 initiating this "pull".  If Bob's work conflicts with what Alice did since
320 their histories forked, Alice will use her working tree and the index to
321 resolve conflicts, and existing local changes will interfere with the
322 conflict resolution process (git will still perform the fetch but will
323 refuse to merge --- Alice will have to get rid of her local changes in
324 some way and pull again when this happens).
326 Alice can peek at what Bob did without merging first, using the "fetch"
327 command; this allows Alice to inspect what Bob did, using a special
328 symbol "FETCH_HEAD", in order to determine if he has anything worth
329 pulling, like this:
331 ------------------------------------------------
332 alice$ git fetch /home/bob/myrepo master
333 alice$ git log -p HEAD..FETCH_HEAD
334 ------------------------------------------------
336 This operation is safe even if Alice has uncommitted local changes.
337 The range notation HEAD..FETCH_HEAD" means "show everything that is reachable
338 from the FETCH_HEAD but exclude anything that is reachable from HEAD.
339 Alice already knows everything that leads to her current state (HEAD),
340 and reviewing what Bob has in his state (FETCH_HEAD) that she has not
341 seen with this command
343 If Alice wants to visualize what Bob did since their histories forked
344 she can issue the following command:
346 ------------------------------------------------
347 $ gitk HEAD..FETCH_HEAD
348 ------------------------------------------------
350 This uses the same two-dot range notation we saw earlier with 'git log'.
352 Alice may want to view what both of them did since they forked.
353 She can use three-dot form instead of the two-dot form:
355 ------------------------------------------------
356 $ gitk HEAD...FETCH_HEAD
357 ------------------------------------------------
359 This means "show everything that is reachable from either one, but
360 exclude anything that is reachable from both of them".
362 Please note that these range notation can be used with both gitk
363 and "git log".
365 After inspecting what Bob did, if there is nothing urgent, Alice may
366 decide to continue working without pulling from Bob.  If Bob's history
367 does have something Alice would immediately need, Alice may choose to
368 stash her work-in-progress first, do a "pull", and then finally unstash
369 her work-in-progress on top of the resulting history.
371 When you are working in a small closely knit group, it is not
372 unusual to interact with the same repository over and over
373 again.  By defining 'remote' repository shorthand, you can make
374 it easier:
376 ------------------------------------------------
377 alice$ git remote add bob /home/bob/myrepo
378 ------------------------------------------------
380 With this, Alice can perform the first part of the "pull" operation alone using the
381 'git-fetch' command without merging them with her own branch,
382 using:
384 -------------------------------------
385 alice$ git fetch bob
386 -------------------------------------
388 Unlike the longhand form, when Alice fetches from Bob using a
389 remote repository shorthand set up with 'git-remote', what was
390 fetched is stored in a remote tracking branch, in this case
391 `bob/master`.  So after this:
393 -------------------------------------
394 alice$ git log -p master..bob/master
395 -------------------------------------
397 shows a list of all the changes that Bob made since he branched from
398 Alice's master branch.
400 After examining those changes, Alice
401 could merge the changes into her master branch:
403 -------------------------------------
404 alice$ git merge bob/master
405 -------------------------------------
407 This `merge` can also be done by 'pulling from her own remote
408 tracking branch', like this:
410 -------------------------------------
411 alice$ git pull . remotes/bob/master
412 -------------------------------------
414 Note that git pull always merges into the current branch,
415 regardless of what else is given on the command line.
417 Later, Bob can update his repo with Alice's latest changes using
419 -------------------------------------
420 bob$ git pull
421 -------------------------------------
423 Note that he doesn't need to give the path to Alice's repository;
424 when Bob cloned Alice's repository, git stored the location of her
425 repository in the repository configuration, and that location is
426 used for pulls:
428 -------------------------------------
429 bob$ git config --get remote.origin.url
430 /home/alice/project
431 -------------------------------------
433 (The complete configuration created by 'git-clone' is visible using
434 `git config -l`, and the linkgit:git-config[1] man page
435 explains the meaning of each option.)
437 Git also keeps a pristine copy of Alice's master branch under the
438 name "origin/master":
440 -------------------------------------
441 bob$ git branch -r
442   origin/master
443 -------------------------------------
445 If Bob later decides to work from a different host, he can still
446 perform clones and pulls using the ssh protocol:
448 -------------------------------------
449 bob$ git clone alice.org:/home/alice/project myrepo
450 -------------------------------------
452 Alternatively, git has a native protocol, or can use rsync or http;
453 see linkgit:git-pull[1] for details.
455 Git can also be used in a CVS-like mode, with a central repository
456 that various users push changes to; see linkgit:git-push[1] and
457 linkgit:gitcvs-migration[7].
459 Exploring history
460 -----------------
462 Git history is represented as a series of interrelated commits.  We
463 have already seen that the 'git-log' command can list those commits.
464 Note that first line of each git log entry also gives a name for the
465 commit:
467 -------------------------------------
468 $ git log
469 commit c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
470 Author: Junio C Hamano <junkio@cox.net>
471 Date:   Tue May 16 17:18:22 2006 -0700
473     merge-base: Clarify the comments on post processing.
474 -------------------------------------
476 We can give this name to 'git-show' to see the details about this
477 commit.
479 -------------------------------------
480 $ git show c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
481 -------------------------------------
483 But there are other ways to refer to commits.  You can use any initial
484 part of the name that is long enough to uniquely identify the commit:
486 -------------------------------------
487 $ git show c82a22c39c   # the first few characters of the name are
488                         # usually enough
489 $ git show HEAD         # the tip of the current branch
490 $ git show experimental # the tip of the "experimental" branch
491 -------------------------------------
493 Every commit usually has one "parent" commit
494 which points to the previous state of the project:
496 -------------------------------------
497 $ git show HEAD^  # to see the parent of HEAD
498 $ git show HEAD^^ # to see the grandparent of HEAD
499 $ git show HEAD~4 # to see the great-great grandparent of HEAD
500 -------------------------------------
502 Note that merge commits may have more than one parent:
504 -------------------------------------
505 $ git show HEAD^1 # show the first parent of HEAD (same as HEAD^)
506 $ git show HEAD^2 # show the second parent of HEAD
507 -------------------------------------
509 You can also give commits names of your own; after running
511 -------------------------------------
512 $ git tag v2.5 1b2e1d63ff
513 -------------------------------------
515 you can refer to 1b2e1d63ff by the name "v2.5".  If you intend to
516 share this name with other people (for example, to identify a release
517 version), you should create a "tag" object, and perhaps sign it; see
518 linkgit:git-tag[1] for details.
520 Any git command that needs to know a commit can take any of these
521 names.  For example:
523 -------------------------------------
524 $ git diff v2.5 HEAD     # compare the current HEAD to v2.5
525 $ git branch stable v2.5 # start a new branch named "stable" based
526                          # at v2.5
527 $ git reset --hard HEAD^ # reset your current branch and working
528                          # directory to its state at HEAD^
529 -------------------------------------
531 Be careful with that last command: in addition to losing any changes
532 in the working directory, it will also remove all later commits from
533 this branch.  If this branch is the only branch containing those
534 commits, they will be lost.  Also, don't use 'git-reset' on a
535 publicly-visible branch that other developers pull from, as it will
536 force needless merges on other developers to clean up the history.
537 If you need to undo changes that you have pushed, use 'git-revert'
538 instead.
540 The 'git-grep' command can search for strings in any version of your
541 project, so
543 -------------------------------------
544 $ git grep "hello" v2.5
545 -------------------------------------
547 searches for all occurrences of "hello" in v2.5.
549 If you leave out the commit name, 'git-grep' will search any of the
550 files it manages in your current directory.  So
552 -------------------------------------
553 $ git grep "hello"
554 -------------------------------------
556 is a quick way to search just the files that are tracked by git.
558 Many git commands also take sets of commits, which can be specified
559 in a number of ways.  Here are some examples with 'git-log':
561 -------------------------------------
562 $ git log v2.5..v2.6            # commits between v2.5 and v2.6
563 $ git log v2.5..                # commits since v2.5
564 $ git log --since="2 weeks ago" # commits from the last 2 weeks
565 $ git log v2.5.. Makefile       # commits since v2.5 which modify
566                                 # Makefile
567 -------------------------------------
569 You can also give 'git-log' a "range" of commits where the first is not
570 necessarily an ancestor of the second; for example, if the tips of
571 the branches "stable-release" and "master" diverged from a common
572 commit some time ago, then
574 -------------------------------------
575 $ git log stable..experimental
576 -------------------------------------
578 will list commits made in the experimental branch but not in the
579 stable branch, while
581 -------------------------------------
582 $ git log experimental..stable
583 -------------------------------------
585 will show the list of commits made on the stable branch but not
586 the experimental branch.
588 The 'git-log' command has a weakness: it must present commits in a
589 list.  When the history has lines of development that diverged and
590 then merged back together, the order in which 'git-log' presents
591 those commits is meaningless.
593 Most projects with multiple contributors (such as the Linux kernel,
594 or git itself) have frequent merges, and 'gitk' does a better job of
595 visualizing their history.  For example,
597 -------------------------------------
598 $ gitk --since="2 weeks ago" drivers/
599 -------------------------------------
601 allows you to browse any commits from the last 2 weeks of commits
602 that modified files under the "drivers" directory.  (Note: you can
603 adjust gitk's fonts by holding down the control key while pressing
604 "-" or "+".)
606 Finally, most commands that take filenames will optionally allow you
607 to precede any filename by a commit, to specify a particular version
608 of the file:
610 -------------------------------------
611 $ git diff v2.5:Makefile HEAD:Makefile.in
612 -------------------------------------
614 You can also use 'git-show' to see any such file:
616 -------------------------------------
617 $ git show v2.5:Makefile
618 -------------------------------------
620 Next Steps
621 ----------
623 This tutorial should be enough to perform basic distributed revision
624 control for your projects.  However, to fully understand the depth
625 and power of git you need to understand two simple ideas on which it
626 is based:
628   * The object database is the rather elegant system used to
629     store the history of your project--files, directories, and
630     commits.
632   * The index file is a cache of the state of a directory tree,
633     used to create commits, check out working directories, and
634     hold the various trees involved in a merge.
636 Part two of this tutorial explains the object
637 database, the index file, and a few other odds and ends that you'll
638 need to make the most of git. You can find it at linkgit:gittutorial-2[7].
640 If you don't want to continue with that right away, a few other
641 digressions that may be interesting at this point are:
643   * linkgit:git-format-patch[1], linkgit:git-am[1]: These convert
644     series of git commits into emailed patches, and vice versa,
645     useful for projects such as the Linux kernel which rely heavily
646     on emailed patches.
648   * linkgit:git-bisect[1]: When there is a regression in your
649     project, one way to track down the bug is by searching through
650     the history to find the exact commit that's to blame.  Git bisect
651     can help you perform a binary search for that commit.  It is
652     smart enough to perform a close-to-optimal search even in the
653     case of complex non-linear history with lots of merged branches.
655   * link:everyday.html[Everyday GIT with 20 Commands Or So]
657   * linkgit:gitcvs-migration[7]: Git for CVS users.
659 SEE ALSO
660 --------
661 linkgit:gittutorial-2[7],
662 linkgit:gitcvs-migration[7],
663 linkgit:gitcore-tutorial[7],
664 linkgit:gitglossary[7],
665 linkgit:git-help[1],
666 link:everyday.html[Everyday git],
667 link:user-manual.html[The Git User's Manual]
671 Part of the linkgit:git[1] suite.