Remove uncontested renamed files during merge.
[git/debian.git] / Documentation / tutorial.txt
blobfe4491de41d1bcaeb56d5152e580eb483b0a12b0
1 A tutorial introduction to git
2 ==============================
4 This tutorial explains how to import a new project into git, make
5 changes to it, and share changes with other developers.
7 First, note that you can get documentation for a command such as "git
8 diff" with:
10 ------------------------------------------------
11 $ man git-diff
12 ------------------------------------------------
14 It is a good idea to introduce yourself to git before doing any
15 operation.  The easiest way to do so is:
17 ------------------------------------------------
18 $ cat >~/.gitconfig <<\EOF
19 [user]
20         name = Your Name Comes Here
21         email = you@yourdomain.example.com
22 EOF
23 ------------------------------------------------
26 Importing a new project
27 -----------------------
29 Assume you have a tarball project.tar.gz with your initial work.  You
30 can place it under git revision control as follows.
32 ------------------------------------------------
33 $ tar xzf project.tar.gz
34 $ cd project
35 $ git init-db
36 ------------------------------------------------
38 Git will reply
40 ------------------------------------------------
41 defaulting to local storage area
42 ------------------------------------------------
44 You've now initialized the working directory--you may notice a new
45 directory created, named ".git".  Tell git that you want it to track
46 every file under the current directory with (notice the dot '.'
47 that means the current directory):
49 ------------------------------------------------
50 $ git add .
51 ------------------------------------------------
53 Finally,
55 ------------------------------------------------
56 $ git commit
57 ------------------------------------------------
59 will prompt you for a commit message, then record the current state
60 of all the files to the repository.
62 Try modifying some files, then run
64 ------------------------------------------------
65 $ git diff
66 ------------------------------------------------
68 to review your changes.  When you're done,
70 ------------------------------------------------
71 $ git commit file1 file2...
72 ------------------------------------------------
74 will again prompt your for a message describing the change, and then
75 record the new versions of the files you listed.  It is cumbersome
76 to list all files and you can say `-a` (which stands for 'all')
77 instead.
79 ------------------------------------------------
80 $ git commit -a
81 ------------------------------------------------
83 A note on commit messages: Though not required, it's a good idea to
84 begin the commit message with a single short (less than 50 character)
85 line summarizing the change, followed by a blank line and then a more
86 thorough description.  Tools that turn commits into email, for
87 example, use the first line on the Subject line and the rest of the
88 commit in the body.
90 To add a new file, first create the file, then
92 ------------------------------------------------
93 $ git add path/to/new/file
94 ------------------------------------------------
96 then commit as usual.  No special command is required when removing a
97 file; just remove it, then tell `commit` about the file as usual.
99 At any point you can view the history of your changes using
101 ------------------------------------------------
102 $ git log
103 ------------------------------------------------
105 If you also want to see complete diffs at each step, use
107 ------------------------------------------------
108 $ git log -p
109 ------------------------------------------------
111 Managing branches
112 -----------------
114 A single git repository can maintain multiple branches of
115 development.  To create a new branch named "experimental", use
117 ------------------------------------------------
118 $ git branch experimental
119 ------------------------------------------------
121 If you now run
123 ------------------------------------------------
124 $ git branch
125 ------------------------------------------------
127 you'll get a list of all existing branches:
129 ------------------------------------------------
130   experimental
131 * master
132 ------------------------------------------------
134 The "experimental" branch is the one you just created, and the
135 "master" branch is a default branch that was created for you
136 automatically.  The asterisk marks the branch you are currently on;
137 type
139 ------------------------------------------------
140 $ git checkout experimental
141 ------------------------------------------------
143 to switch to the experimental branch.  Now edit a file, commit the
144 change, and switch back to the master branch:
146 ------------------------------------------------
147 (edit file)
148 $ git commit -a
149 $ git checkout master
150 ------------------------------------------------
152 Check that the change you made is no longer visible, since it was
153 made on the experimental branch and you're back on the master branch.
155 You can make a different change on the master branch:
157 ------------------------------------------------
158 (edit file)
159 $ git commit -a
160 ------------------------------------------------
162 at this point the two branches have diverged, with different changes
163 made in each.  To merge the changes made in experimental into master, run
165 ------------------------------------------------
166 $ git pull . experimental
167 ------------------------------------------------
169 If the changes don't conflict, you're done.  If there are conflicts,
170 markers will be left in the problematic files showing the conflict;
172 ------------------------------------------------
173 $ git diff
174 ------------------------------------------------
176 will show this.  Once you've edited the files to resolve the
177 conflicts,
179 ------------------------------------------------
180 $ git commit -a
181 ------------------------------------------------
183 will commit the result of the merge. Finally,
185 ------------------------------------------------
186 $ gitk
187 ------------------------------------------------
189 will show a nice graphical representation of the resulting history.
191 If you develop on a branch crazy-idea, then regret it, you can always
192 delete the branch with
194 -------------------------------------
195 $ git branch -D crazy-idea
196 -------------------------------------
198 Branches are cheap and easy, so this is a good way to try something
199 out.
201 Using git for collaboration
202 ---------------------------
204 Suppose that Alice has started a new project with a git repository in
205 /home/alice/project, and that Bob, who has a home directory on the
206 same machine, wants to contribute.
208 Bob begins with:
210 ------------------------------------------------
211 $ git clone /home/alice/project myrepo
212 ------------------------------------------------
214 This creates a new directory "myrepo" containing a clone of Alice's
215 repository.  The clone is on an equal footing with the original
216 project, possessing its own copy of the original project's history.
218 Bob then makes some changes and commits them:
220 ------------------------------------------------
221 (edit files)
222 $ git commit -a
223 (repeat as necessary)
224 ------------------------------------------------
226 When he's ready, he tells Alice to pull changes from the repository
227 at /home/bob/myrepo.  She does this with:
229 ------------------------------------------------
230 $ cd /home/alice/project
231 $ git pull /home/bob/myrepo master
232 ------------------------------------------------
234 This merges the changes from Bob's "master" branch into Alice's
235 current branch.  If Alice has made her own changes in the meantime,
236 then she may need to manually fix any conflicts.  (Note that the
237 "master" argument in the above command is actually unnecessary, as it
238 is the default.)
240 The "pull" command thus performs two operations: it fetches changes
241 from a remote branch, then merges them into the current branch.
243 You can perform the first operation alone using the "git fetch"
244 command.  For example, Alice could create a temporary branch just to
245 track Bob's changes, without merging them with her own, using:
247 -------------------------------------
248 $ git fetch /home/bob/myrepo master:bob-incoming
249 -------------------------------------
251 which fetches the changes from Bob's master branch into a new branch
252 named bob-incoming.  Then
254 -------------------------------------
255 $ git log -p master..bob-incoming
256 -------------------------------------
258 shows a list of all the changes that Bob made since he branched from
259 Alice's master branch.
261 After examining those changes, and possibly fixing things, Alice
262 could pull the changes into her master branch:
264 -------------------------------------
265 $ git checkout master
266 $ git pull . bob-incoming
267 -------------------------------------
269 The last command is a pull from the "bob-incoming" branch in Alice's
270 own repository.
272 Alice could also perform both steps at once with:
274 -------------------------------------
275 $ git pull /home/bob/myrepo master:bob-incoming
276 -------------------------------------
278 This is just like the "git pull /home/bob/myrepo master" that we saw
279 before, except that it also stores the unmerged changes from bob's
280 master branch in bob-incoming before merging them into Alice's
281 current branch.  Note that git pull always merges into the current
282 branch, regardless of what else is given on the commandline.
284 Later, Bob can update his repo with Alice's latest changes using
286 -------------------------------------
287 $ git pull
288 -------------------------------------
290 Note that he doesn't need to give the path to Alice's repository;
291 when Bob cloned Alice's repository, git stored the location of her
292 repository in the file .git/remotes/origin, and that location is used
293 as the default for pulls.
295 Bob may also notice a branch in his repository that he didn't create:
297 -------------------------------------
298 $ git branch
299 * master
300   origin
301 -------------------------------------
303 The "origin" branch, which was created automatically by "git clone",
304 is a pristine copy of Alice's master branch; Bob should never commit
305 to it.
307 If Bob later decides to work from a different host, he can still
308 perform clones and pulls using the ssh protocol:
310 -------------------------------------
311 $ git clone alice.org:/home/alice/project myrepo
312 -------------------------------------
314 Alternatively, git has a native protocol, or can use rsync or http;
315 see gitlink:git-pull[1] for details.
317 Git can also be used in a CVS-like mode, with a central repository
318 that various users push changes to; see gitlink:git-push[1] and
319 link:cvs-migration.html[git for CVS users].
321 Exploring history
322 -----------------
324 Git history is represented as a series of interrelated commits.  We
325 have already seen that the git log command can list those commits.
326 Note that first line of each git log entry also gives a name for the
327 commit:
329 -------------------------------------
330 $ git log
331 commit c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
332 Author: Junio C Hamano <junkio@cox.net>
333 Date:   Tue May 16 17:18:22 2006 -0700
335     merge-base: Clarify the comments on post processing.
336 -------------------------------------
338 We can give this name to git show to see the details about this
339 commit.
341 -------------------------------------
342 $ git show c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
343 -------------------------------------
345 But there other ways to refer to commits.  You can use any initial
346 part of the name that is long enough to uniquely identify the commit:
348 -------------------------------------
349 $ git show c82a22c39c   # the first few characters of the name are
350                         # usually enough
351 $ git show HEAD         # the tip of the current branch
352 $ git show experimental # the tip of the "experimental" branch
353 -------------------------------------
355 Every commit has at least one "parent" commit, which points to the
356 previous state of the project:
358 -------------------------------------
359 $ git show HEAD^  # to see the parent of HEAD
360 $ git show HEAD^^ # to see the grandparent of HEAD
361 $ git show HEAD~4 # to see the great-great grandparent of HEAD
362 -------------------------------------
364 Note that merge commits may have more than one parent:
366 -------------------------------------
367 $ git show HEAD^1 # show the first parent of HEAD (same as HEAD^)
368 $ git show HEAD^2 # show the second parent of HEAD
369 -------------------------------------
371 You can also give commits names of your own; after running
373 -------------------------------------
374 $ git-tag v2.5 1b2e1d63ff
375 -------------------------------------
377 you can refer to 1b2e1d63ff by the name "v2.5".  If you intend to
378 share this name with other people (for example, to identify a release
379 version), you should create a "tag" object, and perhaps sign it; see
380 gitlink:git-tag[1] for details.
382 Any git command that needs to know a commit can take any of these
383 names.  For example:
385 -------------------------------------
386 $ git diff v2.5 HEAD     # compare the current HEAD to v2.5
387 $ git branch stable v2.5 # start a new branch named "stable" based
388                          # at v2.5
389 $ git reset --hard HEAD^ # reset your current branch and working
390                          # directory to its state at HEAD^
391 -------------------------------------
393 Be careful with that last command: in addition to losing any changes
394 in the working directory, it will also remove all later commits from
395 this branch.  If this branch is the only branch containing those
396 commits, they will be lost.  (Also, don't use "git reset" on a
397 publicly-visible branch that other developers pull from, as git will
398 be confused by history that disappears in this way.)
400 The git grep command can search for strings in any version of your
401 project, so
403 -------------------------------------
404 $ git grep "hello" v2.5
405 -------------------------------------
407 searches for all occurrences of "hello" in v2.5.
409 If you leave out the commit name, git grep will search any of the
410 files it manages in your current directory.  So
412 -------------------------------------
413 $ git grep "hello"
414 -------------------------------------
416 is a quick way to search just the files that are tracked by git.
418 Many git commands also take sets of commits, which can be specified
419 in a number of ways.  Here are some examples with git log:
421 -------------------------------------
422 $ git log v2.5..v2.6            # commits between v2.5 and v2.6
423 $ git log v2.5..                # commits since v2.5
424 $ git log --since="2 weeks ago" # commits from the last 2 weeks
425 $ git log v2.5.. Makefile       # commits since v2.5 which modify
426                                 # Makefile
427 -------------------------------------
429 You can also give git log a "range" of commits where the first is not
430 necessarily an ancestor of the second; for example, if the tips of
431 the branches "stable-release" and "master" diverged from a common
432 commit some time ago, then
434 -------------------------------------
435 $ git log stable..experimental
436 -------------------------------------
438 will list commits made in the experimental branch but not in the
439 stable branch, while
441 -------------------------------------
442 $ git log experimental..stable
443 -------------------------------------
445 will show the list of commits made on the stable branch but not
446 the experimental branch.
448 The "git log" command has a weakness: it must present commits in a
449 list.  When the history has lines of development that diverged and
450 then merged back together, the order in which "git log" presents
451 those commits is meaningless.
453 Most projects with multiple contributors (such as the linux kernel,
454 or git itself) have frequent merges, and gitk does a better job of
455 visualizing their history.  For example,
457 -------------------------------------
458 $ gitk --since="2 weeks ago" drivers/
459 -------------------------------------
461 allows you to browse any commits from the last 2 weeks of commits
462 that modified files under the "drivers" directory.  (Note: you can
463 adjust gitk's fonts by holding down the control key while pressing
464 "-" or "+".)
466 Finally, most commands that take filenames will optionally allow you
467 to precede any filename by a commit, to specify a particular version
468 of the file:
470 -------------------------------------
471 $ git diff v2.5:Makefile HEAD:Makefile.in
472 -------------------------------------
474 You can also use "git cat-file -p" to see any such file:
476 -------------------------------------
477 $ git cat-file -p v2.5:Makefile
478 -------------------------------------
480 Next Steps
481 ----------
483 This tutorial should be enough to perform basic distributed revision
484 control for your projects.  However, to fully understand the depth
485 and power of git you need to understand two simple ideas on which it
486 is based:
488   * The object database is the rather elegant system used to
489     store the history of your project--files, directories, and
490     commits.
492   * The index file is a cache of the state of a directory tree,
493     used to create commits, check out working directories, and
494     hold the various trees involved in a merge.
496 link:tutorial-2.html[Part two of this tutorial] explains the object
497 database, the index file, and a few other odds and ends that you'll
498 need to make the most of git.
500 If you don't want to consider with that right away, a few other
501 digressions that may be interesting at this point are:
503   * gitlink:git-format-patch[1], gitlink:git-am[1]: These convert
504     series of git commits into emailed patches, and vice versa,
505     useful for projects such as the linux kernel which rely heavily
506     on emailed patches.
508   * gitlink:git-bisect[1]: When there is a regression in your
509     project, one way to track down the bug is by searching through
510     the history to find the exact commit that's to blame.  Git bisect
511     can help you perform a binary search for that commit.  It is
512     smart enough to perform a close-to-optimal search even in the
513     case of complex non-linear history with lots of merged branches.
515   * link:everyday.html[Everyday GIT with 20 Commands Or So]
517   * link:cvs-migration.html[git for CVS users].