Document git-diff-tree --always
[git/dscho.git] / Documentation / tutorial.txt
blob66680d76bd8bc196bbbfdf98923b6be6354dea0d
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 Importing a new project
15 -----------------------
17 Assume you have a tarball project.tar.gz with your initial work.  You
18 can place it under git revision control as follows.
20 ------------------------------------------------
21 $ tar xzf project.tar.gz
22 $ cd project
23 $ git init-db
24 ------------------------------------------------
26 Git will reply
28 ------------------------------------------------
29 defaulting to local storage area
30 ------------------------------------------------
32 You've now initialized the working directory--you may notice a new
33 directory created, named ".git".  Tell git that you want it to track
34 every file under the current directory with
36 ------------------------------------------------
37 $ git add .
38 ------------------------------------------------
40 Finally,
42 ------------------------------------------------
43 $ git commit -a
44 ------------------------------------------------
46 will prompt you for a commit message, then record the current state
47 of all the files to the repository.
49 Try modifying some files, then run
51 ------------------------------------------------
52 $ git diff
53 ------------------------------------------------
55 to review your changes.  When you're done,
57 ------------------------------------------------
58 $ git commit -a
59 ------------------------------------------------
61 will again prompt your for a message describing the change, and then
62 record the new versions of the modified files.
64 A note on commit messages: Though not required, it's a good idea to
65 begin the commit message with a single short (less than 50 character)
66 line summarizing the change, followed by a blank line and then a more
67 thorough description.  Tools that turn commits into email, for
68 example, use the first line on the Subject line and the rest of the
69 commit in the body.
71 To add a new file, first create the file, then
73 ------------------------------------------------
74 $ git add path/to/new/file
75 ------------------------------------------------
77 then commit as usual.  No special command is required when removing a
78 file; just remove it, then commit.
80 At any point you can view the history of your changes using
82 ------------------------------------------------
83 $ git whatchanged
84 ------------------------------------------------
86 If you also want to see complete diffs at each step, use
88 ------------------------------------------------
89 $ git whatchanged -p
90 ------------------------------------------------
92 Managing branches
93 -----------------
95 A single git repository can maintain multiple branches of
96 development.  To create a new branch named "experimental", use
98 ------------------------------------------------
99 $ git branch experimental
100 ------------------------------------------------
102 If you now run
104 ------------------------------------------------
105 $ git branch
106 ------------------------------------------------
108 you'll get a list of all existing branches:
110 ------------------------------------------------
111   experimental
112 * master
113 ------------------------------------------------
115 The "experimental" branch is the one you just created, and the
116 "master" branch is a default branch that was created for you
117 automatically.  The asterisk marks the branch you are currently on;
118 type
120 ------------------------------------------------
121 $ git checkout experimental
122 ------------------------------------------------
124 to switch to the experimental branch.  Now edit a file, commit the
125 change, and switch back to the master branch:
127 ------------------------------------------------
128 (edit file)
129 $ git commit -a
130 $ git checkout master
131 ------------------------------------------------
133 Check that the change you made is no longer visible, since it was
134 made on the experimental branch and you're back on the master branch.
136 You can make a different change on the master branch:
138 ------------------------------------------------
139 (edit file)
140 $ git commit -a
141 ------------------------------------------------
143 at this point the two branches have diverged, with different changes
144 made in each.  To merge the changes made in the two branches, run
146 ------------------------------------------------
147 $ git pull . experimental
148 ------------------------------------------------
150 If the changes don't conflict, you're done.  If there are conflicts,
151 markers will be left in the problematic files showing the conflict;
153 ------------------------------------------------
154 $ git diff
155 ------------------------------------------------
157 will show this.  Once you've edited the files to resolve the
158 conflicts,
160 ------------------------------------------------
161 $ git commit -a
162 ------------------------------------------------
164 will commit the result of the merge. Finally,
166 ------------------------------------------------
167 $ gitk
168 ------------------------------------------------
170 will show a nice graphical representation of the resulting history.
172 If you develop on a branch crazy-idea, then regret it, you can always
173 delete the branch with
175 -------------------------------------
176 $ git branch -D crazy-idea
177 -------------------------------------
179 Branches are cheap and easy, so this is a good way to try something
180 out.
182 Using git for collaboration
183 ---------------------------
185 Suppose that Alice has started a new project with a git repository in
186 /home/alice/project, and that Bob, who has a home directory on the
187 same machine, wants to contribute.
189 Bob begins with:
191 ------------------------------------------------
192 $ git clone /home/alice/project myrepo
193 ------------------------------------------------
195 This creates a new directory "myrepo" containing a clone of Alice's
196 repository.  The clone is on an equal footing with the original
197 project, posessing its own copy of the original project's history.
199 Bob then makes some changes and commits them:
201 ------------------------------------------------
202 (edit files)
203 $ git commit -a
204 (repeat as necessary)
205 ------------------------------------------------
207 When he's ready, he tells Alice to pull changes from the repository
208 at /home/bob/myrepo.  She does this with:
210 ------------------------------------------------
211 $ cd /home/alice/project
212 $ git pull /home/bob/myrepo
213 ------------------------------------------------
215 This actually pulls changes from the branch in Bob's repository named
216 "master".  Alice could request a different branch by adding the name
217 of the branch to the end of the git pull command line.
219 This merges Bob's changes into her repository; "git whatchanged" will
220 now show the new commits.  If Alice has made her own changes in the
221 meantime, then Bob's changes will be merged in, and she will need to
222 manually fix any conflicts.
224 A more cautious Alice might wish to examine Bob's changes before
225 pulling them.  She can do this by creating a temporary branch just
226 for the purpose of studying Bob's changes:
228 -------------------------------------
229 $ git fetch /home/bob/myrepo master:bob-incoming
230 -------------------------------------
232 which fetches the changes from Bob's master branch into a new branch
233 named bob-incoming.  (Unlike git pull, git fetch just fetches a copy
234 of Bob's line of development without doing any merging).  Then
236 -------------------------------------
237 $ git whatchanged -p master..bob-incoming
238 -------------------------------------
240 shows a list of all the changes that Bob made since he branched from
241 Alice's master branch.
243 After examing those changes, and possibly fixing things, Alice can
244 pull the changes into her master branch:
246 -------------------------------------
247 $ git checkout master
248 $ git pull . bob-incoming
249 -------------------------------------
251 The last command is a pull from the "bob-incoming" branch in Alice's
252 own repository.
254 Later, Bob can update his repo with Alice's latest changes using
256 -------------------------------------
257 $ git pull
258 -------------------------------------
260 Note that he doesn't need to give the path to Alice's repository;
261 when Bob cloned Alice's repository, git stored the location of her
262 repository in the file .git/remotes/origin, and that location is used
263 as the default for pulls.
265 Bob may also notice a branch in his repository that he didn't create:
267 -------------------------------------
268 $ git branch
269 * master
270   origin
271 -------------------------------------
273 The "origin" branch, which was created automatically by "git clone",
274 is a pristine copy of Alice's master branch; Bob should never commit
275 to it.
277 If Bob later decides to work from a different host, he can still
278 perform clones and pulls using the ssh protocol:
280 -------------------------------------
281 $ git clone alice.org:/home/alice/project myrepo
282 -------------------------------------
284 Alternatively, git has a native protocol, or can use rsync or http;
285 see gitlink:git-pull[1] for details.
287 Git can also be used in a CVS-like mode, with a central repository
288 that various users push changes to; see gitlink:git-push[1] and
289 link:cvs-migration.html[git for CVS users].
291 Keeping track of history
292 ------------------------
294 Git history is represented as a series of interrelated commits.  The
295 most recent commit in the currently checked-out branch can always be
296 referred to as HEAD, and the "parent" of any commit can always be
297 referred to by appending a caret, "^", to the end of the name of the
298 commit.  So, for example,
300 -------------------------------------
301 git diff HEAD^ HEAD
302 -------------------------------------
304 shows the difference between the most-recently checked-in state of
305 the tree and the previous state, and
307 -------------------------------------
308 git diff HEAD^^ HEAD^
309 -------------------------------------
311 shows the difference between that previous state and the state two
312 commits ago.  Also, HEAD~5 can be used as a shorthand for HEAD^^^^^,
313 and more generally HEAD~n can refer to the nth previous commit.
314 Commits representing merges have more than one parent, and you can
315 specify which parent to follow in that case; see
316 gitlink:git-rev-parse[1].
318 The name of a branch can also be used to refer to the most recent
319 commit on that branch; so you can also say things like
321 -------------------------------------
322 git diff HEAD experimental
323 -------------------------------------
325 to see the difference between the most-recently committed tree in
326 the current branch and the most-recently committed tree in the
327 experimental branch.
329 But you may find it more useful to see the list of commits made in
330 the experimental branch but not in the current branch, and
332 -------------------------------------
333 git whatchanged HEAD..experimental
334 -------------------------------------
336 will do that, just as
338 -------------------------------------
339 git whatchanged experimental..HEAD
340 -------------------------------------
342 will show the list of commits made on the HEAD but not included in
343 experimental.
345 You can also give commits convenient names of your own: after running
347 -------------------------------------
348 $ git-tag v2.5 HEAD^^
349 -------------------------------------
351 you can refer to HEAD^^ by the name "v2.5".  If you intend to share
352 this name with other people (for example, to identify a release
353 version), you should create a "tag" object, and perhaps sign it; see
354 gitlink:git-tag[1] for details.
356 You can revisit the old state of a tree, and make further
357 modifications if you wish, using git branch: the command
359 -------------------------------------
360 $ git branch stable-release v2.5
361 -------------------------------------
363 will create a new branch named "stable-release" starting from the
364 commit which you tagged with the name v2.5.
366 You can reset the state of any branch to an earlier commit at any
367 time with
369 -------------------------------------
370 $ git reset --hard v2.5
371 -------------------------------------
373 This will remove all later commits from this branch and reset the
374 working tree to the state it had when the given commit was made.  If
375 this branch is the only branch containing the later commits, those
376 later changes will be lost.  Don't use "git reset" on a
377 publicly-visible branch that other developers pull from, as git will
378 be confused by history that disappears in this way.
380 Next Steps
381 ----------
383 Some good commands to explore next:
385   * gitlink:git-diff[1]: This flexible command does much more than
386     we've seen in the few examples above.
388   * gitlink:git-format-patch[1], gitlink:git-am[1]: These convert
389     series of git commits into emailed patches, and vice versa,
390     useful for projects such as the linux kernel which rely heavily
391     on emailed patches.
393   * gitlink:git-bisect[1]: When there is a regression in your
394     project, one way to track down the bug is by searching through
395     the history to find the exact commit that's to blame.  Git bisect
396     can help you perform a binary search for that commit.  It is
397     smart enough to perform a close-to-optimal search even in the
398     case of complex non-linear history with lots of merged branches.
400 Other good starting points include link:everyday.html[Everday GIT
401 with 20 Commands Or So] and link:cvs-migration.html[git for CVS
402 users].  Also, link:core-tutorial.html[A short git tutorial] gives an
403 introduction to lower-level git commands for advanced users and
404 developers.