[pt-br] Translation of Chapter 2- Git Basics 9% done
[progit-mk.git] / pt-br / 02-git-basics / 01-chapter2.markdown
blob4b16444dfa61db015acaf22fae75d0170f73750f
1 # Git Essencial #
3 Se você só puder ler um capítulo para continuar a usar o Git, este é ele. Esse capítulo cobre todos os comandos básicos que você precisa para realizar a maioria das atividades que eventualmente você fará no Git. Ao final desse capítulo você deverá ser capaz de configurar e inicializar um repositório, começar e parar o monitoramento de arquivos, além de selecionar e comitar alterações. Também vamos mostrar a você como configurar o Git para ignorar certos tipos de arquivos e padrões de arquivos, como desfazer enganos rápida e facilmente, como pesquisar o histórico do seu projeto e visualizar alterações entre commits e como enviar e obter arquivos a partir de repositórios remotos.
5 ## Obtendo um Repositório Git ##
7 Você pode obter um projeto Git utilizando duas formas principais. A primeira faz uso de um projeto ou diretório existente e o importa para o Git. A segunda clona um repositório Git existente a partir de outro servidor.
9 ### Inicializando um Repositório em um Diretório Existente ###
11 Caso você esteja iniciando o monitoramento de um projeto existente com Git, você precisa ir para o diretório do projeto e digitar
13         $ git init
15 Isso cria um novo subdiretório chamado .git que contem todos os arquivos necessários de seu repositório — um esqueleto de repositório Git. Neste ponto, nada em seu projeto é monitorado. (Veja o Capítulo 9 para maiores informações sobre quais arquivos estão contidos no diretório `.git` que foi criado.)  
17 Caso você queira começar a controlar o versionamento dos arquivos existentes (diferente de um diretório vazio), voce provavelmente deve começar a monitorar esses arquivos e fazer um commit inicial. Você pode realizar isso com poucos comandos `git add` que especificam quais arquivos você quer monitorar, seguido de um commit:
19         $ git add *.c
20         $ git add README
21         $ git commit –m 'initial project version'
23 Bem, nós iremos repassar esses comandos em um momento. Neste ponto, você tem um repositório Git com arquivos monitorados e um commit inicial.
25 ### Clonando um Repositório Existente ###
27 Caso você queira copiar um repositório Git já existente — por exemplo, um projeto que você queira contribuir — o comando necessário é `git clone`. Caso você esteja familiarizado com outros sistemas VCS, tais como Subversion, você perceberá que o comando é clone e não checkout. Essa é uma diferença importante — Git recebe uma cópia de quase todos os dados que o servidor possui. Cada versão de cada arquivos no histórico do projeto é obtido quando você roda `git clone`. De fato, se o disco do servidor ficar corrompido, é possível utilizar um dos clones em qualquer cliente para reaver o servidor no estado em que estava quando foi clonado (você pode perder algumas características do servidor, mas todos os dados versionados estarão lá — veja o Capítulo 4 para maiores detalhes).
29 Você clona um repositório com `git clone [url]`. Por exemplo, caso você queria clona a biblioteca Git do Ruby chamada Grit, você pode fazê-lo da seguinte forma:
31         $ git clone git://github.com/schacon/grit.git
33 Isso cria um diretório chamado grit, inicializa um diretório `.git`dentro deste, obtem todos os dados do repositório e verifica a cópia atual da última versão. Se você entra no novo diretório grit, você verá todas os arquivos do projeto nele, pronto para serem editados ou utilizados. Caso você queira clonar o repositório em um diretório diferente de grit, é possível especificar esse diretório utilizando a opção abaixo:
35         $ git clone git://github.com/schacon/grit.git mygrit
37 Este comando faz exatamente a mesma coisa que o anterior, mas o diretório alvo será chamado mygrit.
39 O Git possui diversos protocolos de transferência que você pode usar. O exemplo anterior utiliza o protocolo `git://`, mas você também pode ver `http(s)://` ou `user@server:/path.git`, que utiliza o protocolo de transferência SSH. No Capítulo 4 introduziremos todas as opções disponíveis nas quais o servidor pode ser configurado para acessar o seu repositório Git e os prós e contras de cada uma.
41 ## Gravando Alterações no Repositório ##
43 Você tem um `bona fide` repositório Git e um checkout ou cópia funcional dos arquivos para esse projeto. Você precisa fazer algumas mudanças e comitar partes destas mudanças em seu repositório cada vez que o projeto atinge um estado ao qual você queira gravar.
45 Lembre-se que cada arquivo em seu diretório de trabalho pode estar em um de dois estados: monitorado ou não monitorado. Arquivos monitorados são arquivos que estavam no último snapshot; podendo estar inalterados, modificados ou selecionados. Arquivos não monitorados são todo o restante — qualquer arquivo em seu diretório de trabalho que não estava no último snapshot e também não estão em sua área de seleção. Quando um repositório é inicialmente clonado, todos os seus arquivos serão monitorados e inalterados porque você simplesmente os obteve e ainda não os editou.
47 Conforme você editas esses arquivos, Git passa a vê-los como modificados, porque você os alterou desde seu último commit. Você seleciona esses arquivos modificados e então comita todas as alterações selecionadas e o ciclo se repete. Este ciclo é apresentado na Figura 2-1.
49 Insert 18333fig0201.png 
50 Figura 2-1. O ciclo de vida dos status de seus arquivos
52 ### Verificando o Status de Seus Arquivos ###
54 A principal ferramenta utilizada para determinar quais arquivos estão em quais estados é o comando git status. Se você executar este comando diretamente após uma clonagem, você deverá ver algo similar a isso:
56         $ git status
57         # On branch master
58         nothing to commit (working directory clean)
60 Isso significa que você tem um diretório de trabalho limpo — em outras palavras, não existem arquivos monitorados e modificados. Git também não encontrou qualquer arquivo não monitorado, caso contrário eles seria listados aqui. Por fim, o comando lhe mostra em qual branch você se encontra. Por enquanto, esse sempre é o master, que é o padrão; você não deve se preocupar sobre isso. No próximo capítulo nós vamos falar sobre branches e referências em detalhes.
62 Vamos dizer que você adicione um novo arquivo em seu projeto, um simples arquivo README. Caso o arquivo não existisse antes e você execute `git status`, você verá o arquivo não monitorado dessa forma:
64         $ vim README
65         $ git status
66         # On branch master
67         # Untracked files:
68         #   (use "git add <file>..." to include in what will be committed)
69         #
70         #       README
71         nothing added to commit but untracked files present (use "git add" to track)
73 You can see that your new README file is untracked, because it’s under the “Untracked files” heading in your status output. Untracked basically means that Git sees a file you didn’t have in the previous snapshot (commit); Git won’t start including it in your commit snapshots until you explicitly tell it to do so. It does this so you don’t accidentally begin including generated binary files or other files that you did not mean to include. You do want to start including README, so let’s start tracking the file.
74 Você pode ver que nosso novo arquivo README não é monitorado, porque esta sob o cabeçalho “arquivos não monitorados” no resultado do status.
76 ### Tracking New Files ###
78 In order to begin tracking a new file, you use the command `git add`. To begin tracking the README file, you can run this:
80         $ git add README
82 If you run your status command again, you can see that your README file is now tracked and staged:
84         $ git status
85         # On branch master
86         # Changes to be committed:
87         #   (use "git reset HEAD <file>..." to unstage)
88         #
89         #       new file:   README
90         #
92 You can tell that it’s staged because it’s under the “Changes to be committed” heading. If you commit at this point, the version of the file at the time you ran git add is what will be in the historical snapshot. You may recall that when you ran git init earlier, you then ran git add (files) — that was to begin tracking files in your directory. The git add command takes a path name for either a file or a directory; if it’s a directory, the command adds all the files in that directory recursively.
94 ### Staging Modified Files ###
96 Let’s change a file that was already tracked. If you change a previously tracked file called `benchmarks.rb` and then run your `status` command again, you get something that looks like this:
98         $ git status
99         # On branch master
100         # Changes to be committed:
101         #   (use "git reset HEAD <file>..." to unstage)
102         #
103         #       new file:   README
104         #
105         # Changed but not updated:
106         #   (use "git add <file>..." to update what will be committed)
107         #
108         #       modified:   benchmarks.rb
109         #
111 The benchmarks.rb file appears under a section named “Changed but not updated” — which means that a file that is tracked has been modified in the working directory but not yet staged. To stage it, you run the `git add` command (it’s a multipurpose command — you use it to begin tracking new files, to stage files, and to do other things like marking merge-conflicted files as resolved). Let’s run `git add` now to stage the benchmarks.rb file, and then run `git status` again:
113         $ git add benchmarks.rb
114         $ git status
115         # On branch master
116         # Changes to be committed:
117         #   (use "git reset HEAD <file>..." to unstage)
118         #
119         #       new file:   README
120         #       modified:   benchmarks.rb
121         #
123 Both files are staged and will go into your next commit. At this point, suppose you remember one little change that you want to make in benchmarks.rb before you commit it. You open it again and make that change, and you’re ready to commit. However, let’s run `git status` one more time:
125         $ vim benchmarks.rb 
126         $ git status
127         # On branch master
128         # Changes to be committed:
129         #   (use "git reset HEAD <file>..." to unstage)
130         #
131         #       new file:   README
132         #       modified:   benchmarks.rb
133         #
134         # Changed but not updated:
135         #   (use "git add <file>..." to update what will be committed)
136         #
137         #       modified:   benchmarks.rb
138         #
140 What the heck? Now benchmarks.rb is listed as both staged and unstaged. How is that possible? It turns out that Git stages a file exactly as it is when you run the git add command. If you commit now, the version of benchmarks.rb as it was when you last ran the git add command is how it will go into the commit, not the version of the file as it looks in your working directory when you run git commit. If you modify a file after you run `git add`, you have to run `git add` again to stage the latest version of the file:
142         $ git add benchmarks.rb
143         $ git status
144         # On branch master
145         # Changes to be committed:
146         #   (use "git reset HEAD <file>..." to unstage)
147         #
148         #       new file:   README
149         #       modified:   benchmarks.rb
150         #
152 ### Ignoring Files ###
154 Often, you’ll have a class of files that you don’t want Git to automatically add or even show you as being untracked. These are generally automatically generated files such as log files or files produced by your build system. In such cases, you can create a file listing patterns to match them named .gitignore.  Here is an example .gitignore file:
156         $ cat .gitignore
157         *.[oa]
158         *~
160 The first line tells Git to ignore any files ending in .o or .a — object and archive files that may be the product of building your code. The second line tells Git to ignore all files that end with a tilde (`~`), which is used by many text editors such as Emacs to mark temporary files. You may also include a log, tmp, or pid directory; automatically generated documentation; and so on. Setting up a .gitignore file before you get going is generally a good idea so you don’t accidentally commit files that you really don’t want in your Git repository.
162 The rules for the patterns you can put in the .gitignore file are as follows:
164 *       Blank lines or lines starting with # are ignored.
165 *       Standard glob patterns work.
166 *       You can end patterns with a forward slash (`/`) to specify a directory.
167 *       You can negate a pattern by starting it with an exclamation point (`!`).
169 Glob patterns are like simplified regular expressions that shells use. An asterisk (`*`) matches zero or more characters; `[abc]` matches any character inside the brackets (in this case a, b, or c); a question mark (`?`) matches a single character; and brackets enclosing characters separated by a hyphen(`[0-9]`) matches any character between them (in this case 0 through 9) . 
171 Here is another example .gitignore file:
173         # a comment – this is ignored
174         *.a       # no .a files
175         !lib.a    # but do track lib.a, even though you're ignoring .a files above
176         /TODO     # only ignore the root TODO file, not subdir/TODO
177         build/    # ignore all files in the build/ directory
178         doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt
180 ### Viewing Your Staged and Unstaged Changes ###
182 If the `git status` command is too vague for you — you want to know exactly what you changed, not just which files were changed — you can use the `git diff` command. We’ll cover `git diff` in more detail later; but you’ll probably use it most often to answer these two questions: What have you changed but not yet staged? And what have you staged that you are about to commit? Although `git status` answers those questions very generally, `git diff` shows you the exact lines added and removed — the patch, as it were. 
184 Let’s say you edit and stage the README file again and then edit the benchmarks.rb file without staging it. If you run your `status` command, you once again see something like this:
186         $ git status
187         # On branch master
188         # Changes to be committed:
189         #   (use "git reset HEAD <file>..." to unstage)
190         #
191         #       new file:   README
192         #
193         # Changed but not updated:
194         #   (use "git add <file>..." to update what will be committed)
195         #
196         #       modified:   benchmarks.rb
197         #
199 To see what you’ve changed but not yet staged, type `git diff` with no other arguments:
201         $ git diff
202         diff --git a/benchmarks.rb b/benchmarks.rb
203         index 3cb747f..da65585 100644
204         --- a/benchmarks.rb
205         +++ b/benchmarks.rb
206         @@ -36,6 +36,10 @@ def main
207                    @commit.parents[0].parents[0].parents[0]
208                  end
210         +        run_code(x, 'commits 1') do
211         +          git.commits.size
212         +        end
213         +
214                  run_code(x, 'commits 2') do
215                    log = git.commits('master', 15)
216                    log.size
218 That command compares what is in your working directory with what is in your staging area. The result tells you the changes you’ve made that you haven’t yet staged.
220 If you want to see what you’ve staged that will go into your next commit, you can use `git diff –-cached`. (In Git versions 1.6.1 and later, you can also use `git diff –-staged`, which may be easier to remember.) This command compares your staged changes to your last commit:
222         $ git diff --cached
223         diff --git a/README b/README
224         new file mode 100644
225         index 0000000..03902a1
226         --- /dev/null
227         +++ b/README2
228         @@ -0,0 +1,5 @@
229         +grit
230         + by Tom Preston-Werner, Chris Wanstrath
231         + http://github.com/mojombo/grit
232         +
233         +Grit is a Ruby library for extracting information from a Git repository
235 It’s important to note that `git diff` by itself doesn’t show all changes made since your last commit — only changes that are still unstaged. This can be confusing, because if you’ve staged all of your changes, `git diff` will give you no output.
237 For another example, if you stage the benchmarks.rb file and then edit it, you can use `git diff` to see the changes in the file that are staged and the changes that are unstaged:
239         $ git add benchmarks.rb
240         $ echo '# test line' >> benchmarks.rb
241         $ git status
242         # On branch master
243         #
244         # Changes to be committed:
245         #
246         #       modified:   benchmarks.rb
247         #
248         # Changed but not updated:
249         #
250         #       modified:   benchmarks.rb
251         #
253 Now you can use `git diff` to see what is still unstaged
255         $ git diff 
256         diff --git a/benchmarks.rb b/benchmarks.rb
257         index e445e28..86b2f7c 100644
258         --- a/benchmarks.rb
259         +++ b/benchmarks.rb
260         @@ -127,3 +127,4 @@ end
261          main()
263          ##pp Grit::GitRuby.cache_client.stats 
264         +# test line
265         and git diff --cached to see what you’ve staged so far:
266         $ git diff --cached
267         diff --git a/benchmarks.rb b/benchmarks.rb
268         index 3cb747f..e445e28 100644
269         --- a/benchmarks.rb
270         +++ b/benchmarks.rb
271         @@ -36,6 +36,10 @@ def main
272                   @commit.parents[0].parents[0].parents[0]
273                 end
275         +        run_code(x, 'commits 1') do
276         +          git.commits.size
277         +        end
278         +              
279                 run_code(x, 'commits 2') do
280                   log = git.commits('master', 15)
281                   log.size
283 ### Committing Your Changes ###
285 Now that your staging area is set up the way you want it, you can commit your changes. Remember that anything that is still unstaged — any files you have created or modified that you haven’t run `git add` on since you edited them — won’t go into this commit. They will stay as modified files on your disk.
286 In this case, the last time you ran `git status`, you saw that everything was staged, so you’re ready to commit your changes. The simplest way to commit is to type `git commit`:
288         $ git commit
290 Doing so launches your editor of choice. (This is set by your shell’s `$EDITOR` environment variable — usually vim or emacs, although you can configure it with whatever you want using the `git config --global core.editor` command as you saw in Chapter 1). 
292 The editor displays the following text (this example is a Vim screen):
294         # Please enter the commit message for your changes. Lines starting
295         # with '#' will be ignored, and an empty message aborts the commit.
296         # On branch master
297         # Changes to be committed:
298         #   (use "git reset HEAD <file>..." to unstage)
299         #
300         #       new file:   README
301         #       modified:   benchmarks.rb 
302         ~
303         ~
304         ~
305         ".git/COMMIT_EDITMSG" 10L, 283C
307 You can see that the default commit message contains the latest output of the `git status` command commented out and one empty line on top. You can remove these comments and type your commit message, or you can leave them there to help you remember what you’re committing. (For an even more explicit reminder of what you’ve modified, you can pass the `-v` option to `git commit`. Doing so also puts the diff of your change in the editor so you can see exactly what you did.) When you exit the editor, Git creates your commit with that commit message (with the comments and diff stripped out).
309 Alternatively, you can type your commit message inline with the `commit` command by specifying it after a -m flag, like this:
311         $ git commit -m "Story 182: Fix benchmarks for speed"
312         [master]: created 463dc4f: "Fix benchmarks for speed"
313          2 files changed, 3 insertions(+), 0 deletions(-)
314          create mode 100644 README
316 Now you’ve created your first commit! You can see that the commit has given you some output about itself: which branch you committed to (master), what SHA-1 checksum the commit has (`463dc4f`), how many files were changed, and statistics about lines added and removed in the commit.
318 Remember that the commit records the snapshot you set up in your staging area. Anything you didn’t stage is still sitting there modified; you can do another commit to add it to your history. Every time you perform a commit, you’re recording a snapshot of your project that you can revert to or compare to later.
320 ### Skipping the Staging Area ###
322 Although it can be amazingly useful for crafting commits exactly how you want them, the staging area is sometimes a bit more complex than you need in your workflow. If you want to skip the staging area, Git provides a simple shortcut. Providing the `-a` option to the `git commit` command makes Git automatically stage every file that is already tracked before doing the commit, letting you skip the `git add` part:
324         $ git status
325         # On branch master
326         #
327         # Changed but not updated:
328         #
329         #       modified:   benchmarks.rb
330         #
331         $ git commit -a -m 'added new benchmarks'
332         [master 83e38c7] added new benchmarks
333          1 files changed, 5 insertions(+), 0 deletions(-)
335 Notice how you don’t have to run `git add` on the benchmarks.rb file in this case before you commit.
337 ### Removing Files ###
339 To remove a file from Git, you have to remove it from your tracked files (more accurately, remove it from your staging area) and then commit. The `git rm` command does that and also removes the file from your working directory so you don’t see it as an untracked file next time around.
341 If you simply remove the file from your working directory, it shows up under the “Changed but not updated” (that is, _unstaged_) area of your `git status` output:
343         $ rm grit.gemspec
344         $ git status
345         # On branch master
346         #
347         # Changed but not updated:
348         #   (use "git add/rm <file>..." to update what will be committed)
349         #
350         #       deleted:    grit.gemspec
351         #
353 Then, if you run `git rm`, it stages the file’s removal:
355         $ git rm grit.gemspec
356         rm 'grit.gemspec'
357         $ git status
358         # On branch master
359         #
360         # Changes to be committed:
361         #   (use "git reset HEAD <file>..." to unstage)
362         #
363         #       deleted:    grit.gemspec
364         #
366 The next time you commit, the file will be gone and no longer tracked. If you modified the file and added it to the index already, you must force the removal with the `-f` option. This is a safety feature to prevent accidental removal of data that hasn’t yet been recorded in a snapshot and that can’t be recovered from Git.
368 Another useful thing you may want to do is to keep the file in your working tree but remove it from your staging area. In other words, you may want to keep the file on your hard drive but not have Git track it anymore. This is particularly useful if you forgot to add something to your `.gitignore` file and accidentally added it, like a large log file or a bunch of `.a` compiled files. To do this, use the `--cached` option:
370         $ git rm --cached readme.txt
372 You can pass files, directories, and file-glob patterns to the `git rm` command. That means you can do things such as
374         $ git rm log/\*.log
376 Note the backslash (`\`) in front of the `*`. This is necessary because Git does its own filename expansion in addition to your shell’s filename expansion. This command removes all files that have the `.log` extension in the `log/` directory. Or, you can do something like this:
378         $ git rm \*~
380 This command removes all files that end with `~`.
382 ### Moving Files ###
384 Unlike many other VCS systems, Git doesn’t explicitly track file movement. If you rename a file in Git, no metadata is stored in Git that tells it you renamed the file. However, Git is pretty smart about figuring that out after the fact — we’ll deal with detecting file movement a bit later.
386 Thus it’s a bit confusing that Git has a `mv` command. If you want to rename a file in Git, you can run something like
388         $ git mv file_from file_to
390 and it works fine. In fact, if you run something like this and look at the status, you’ll see that Git considers it a renamed file:
392         $ git mv README.txt README
393         $ git status
394         # On branch master
395         # Your branch is ahead of 'origin/master' by 1 commit.
396         #
397         # Changes to be committed:
398         #   (use "git reset HEAD <file>..." to unstage)
399         #
400         #       renamed:    README.txt -> README
401         #
403 However, this is equivalent to running something like this:
405         $ mv README.txt README
406         $ git rm README.txt
407         $ git add README
409 Git figures out that it’s a rename implicitly, so it doesn’t matter if you rename a file that way or with the `mv` command. The only real difference is that `mv` is one command instead of three — it’s a convenience function. More important, you can use any tool you like to rename a file, and address the add/rm later, before you commit.
411 ## Viewing the Commit History ##
413 After you have created several commits, or if you have cloned a repository with an existing commit history, you’ll probably want to look back to see what has happened. The most basic and powerful tool to do this is the `git log` command.
415 These examples use a very simple project called simplegit that I often use for demonstrations. To get the project, run 
417         git clone git://github.com/schacon/simplegit-progit.git
419 When you run `git log` in this project, you should get output that looks something like this:
421         $ git log
422         commit ca82a6dff817ec66f44342007202690a93763949
423         Author: Scott Chacon <schacon@gee-mail.com>
424         Date:   Mon Mar 17 21:52:11 2008 -0700
426             changed the verison number
428         commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
429         Author: Scott Chacon <schacon@gee-mail.com>
430         Date:   Sat Mar 15 16:40:33 2008 -0700
432             removed unnecessary test code
434         commit a11bef06a3f659402fe7563abf99ad00de2209e6
435         Author: Scott Chacon <schacon@gee-mail.com>
436         Date:   Sat Mar 15 10:31:28 2008 -0700
438             first commit
440 By default, with no arguments, `git log` lists the commits made in that repository in reverse chronological order. That is, the most recent commits show up first. As you can see, this command lists each commit with its SHA-1 checksum, the author’s name and e-mail, the date written, and the commit message.
442 A huge number and variety of options to the `git log` command are available to show you exactly what you’re looking for. Here, we’ll show you some of the most-used options.
444 One of the more helpful options is `-p`, which shows the diff introduced in each commit. You can also use `-2`, which limits the output to only the last two entries:
446         $ git log –p -2
447         commit ca82a6dff817ec66f44342007202690a93763949
448         Author: Scott Chacon <schacon@gee-mail.com>
449         Date:   Mon Mar 17 21:52:11 2008 -0700
451             changed the verison number
453         diff --git a/Rakefile b/Rakefile
454         index a874b73..8f94139 100644
455         --- a/Rakefile
456         +++ b/Rakefile
457         @@ -5,7 +5,7 @@ require 'rake/gempackagetask'
458          spec = Gem::Specification.new do |s|
459         -    s.version   =   "0.1.0"
460         +    s.version   =   "0.1.1"
461              s.author    =   "Scott Chacon"
463         commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
464         Author: Scott Chacon <schacon@gee-mail.com>
465         Date:   Sat Mar 15 16:40:33 2008 -0700
467             removed unnecessary test code
469         diff --git a/lib/simplegit.rb b/lib/simplegit.rb
470         index a0a60ae..47c6340 100644
471         --- a/lib/simplegit.rb
472         +++ b/lib/simplegit.rb
473         @@ -18,8 +18,3 @@ class SimpleGit
474              end
476          end
477         -
478         -if $0 == __FILE__
479         -  git = SimpleGit.new
480         -  puts git.show
481         -end
482         \ No newline at end of file
484 This option displays the same information but with a diff directly following each entry. This is very helpful for code review or to quickly browse what happened during a series of commits that a collaborator has added.
485 You can also use a series of summarizing options with `git log`. For example, if you want to see some abbreviated stats for each commit, you can use the `--stat` option:
487         $ git log --stat 
488         commit ca82a6dff817ec66f44342007202690a93763949
489         Author: Scott Chacon <schacon@gee-mail.com>
490         Date:   Mon Mar 17 21:52:11 2008 -0700
492             changed the verison number
494          Rakefile |    2 +-
495          1 files changed, 1 insertions(+), 1 deletions(-)
497         commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
498         Author: Scott Chacon <schacon@gee-mail.com>
499         Date:   Sat Mar 15 16:40:33 2008 -0700
501             removed unnecessary test code
503          lib/simplegit.rb |    5 -----
504          1 files changed, 0 insertions(+), 5 deletions(-)
506         commit a11bef06a3f659402fe7563abf99ad00de2209e6
507         Author: Scott Chacon <schacon@gee-mail.com>
508         Date:   Sat Mar 15 10:31:28 2008 -0700
510             first commit
512          README           |    6 ++++++
513          Rakefile         |   23 +++++++++++++++++++++++
514          lib/simplegit.rb |   25 +++++++++++++++++++++++++
515          3 files changed, 54 insertions(+), 0 deletions(-)
517 As you can see, the `--stat` option prints below each commit entry a list of modified files, how many files were changed, and how many lines in those files were added and removed. It also puts a summary of the information at the end.
518 Another really useful option is `--pretty`. This option changes the log output to formats other than the default. A few prebuilt options are available for you to use. The oneline option prints each commit on a single line, which is useful if you’re looking at a lot of commits. In addition, the `short`, `full`, and `fuller` options show the output in roughly the same format but with less or more information, respectively:
520         $ git log --pretty=oneline
521         ca82a6dff817ec66f44342007202690a93763949 changed the verison number
522         085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 removed unnecessary test code
523         a11bef06a3f659402fe7563abf99ad00de2209e6 first commit
525 The most interesting option is `format`, which allows you to specify your own log output format. This is especially useful when you’re generating output for machine parsing — because you specify the format explicitly, you know it won’t change with updates to Git:
527         $ git log --pretty=format:"%h - %an, %ar : %s"
528         ca82a6d - Scott Chacon, 11 months ago : changed the verison number
529         085bb3b - Scott Chacon, 11 months ago : removed unnecessary test code
530         a11bef0 - Scott Chacon, 11 months ago : first commit
532 Table 2-1 lists some of the more useful options that format takes.
534         Option  Description of Output
535         %H      Commit hash
536         %h      Abbreviated commit hash
537         %T      Tree hash
538         %t      Abbreviated tree hash
539         %P      Parent hashes
540         %p      Abbreviated parent hashes
541         %an     Author name
542         %ae     Author e-mail
543         %ad     Author date (format respects the –date= option)
544         %ar     Author date, relative
545         %cn     Committer name
546         %ce     Committer email
547         %cd     Committer date
548         %cr     Committer date, relative
549         %s      Subject
551 You may be wondering what the difference is between _author_ and _committer_. The author is the person who originally wrote the work, whereas the committer is the person who last applied the work. So, if you send in a patch to a project and one of the core members applies the patch, both of you get credit — you as the author and the core member as the committer. We’ll cover this distinction a bit more in Chapter 5.
553 The oneline and format options are particularly useful with another `log` option called `--graph`. This option adds a nice little ASCII graph showing your branch and merge history, which we can see our copy of the Grit project repository:
555         $ git log --pretty=format:"%h %s" --graph
556         * 2d3acf9 ignore errors from SIGCHLD on trap
557         *  5e3ee11 Merge branch 'master' of git://github.com/dustin/grit
558         |\  
559         | * 420eac9 Added a method for getting the current branch.
560         * | 30e367c timeout code and tests
561         * | 5a09431 add timeout protection to grit
562         * | e1193f8 support for heads with slashes in them
563         |/  
564         * d6016bc require time for xmlschema
565         *  11d191e Merge branch 'defunkt' into local
567 Those are only some simple output-formatting options to `git log` — there are many more. Table 2-2 lists the options we’ve covered so far and some other common formatting options that may be useful, along with how they change the output of the log command.
569         Option  Description
570         -p      Show the patch introduced with each commit.
571         --stat  Show statistics for files modified in each commit.
572         --shortstat     Display only the changed/insertions/deletions line from the --stat command.
573         --name-only     Show the list of files modified after the commit information.
574         --name-status   Show the list of files affected with added/modified/deleted information as well.
575         --abbrev-commit Show only the first few characters of the SHA-1 checksum instead of all 40.
576         --relative-date Display the date in a relative format (for example, “2 weeks ago”) instead of using the full date format.
577         --graph Display an ASCII graph of the branch and merge history beside the log output.
578         --pretty        Show commits in an alternate format. Options include oneline, short, full, fuller, and format (where you specify your own format).
580 ### Limiting Log Output ###
582 In addition to output-formatting options, git log takes a number of useful limiting options — that is, options that let you show only a subset of commits. You’ve seen one such option already — the `-2` option, which show only the last two commits. In fact, you can do `-<n>`, where `n` is any integer to show the last `n` commits. In reality, you’re unlikely to use that often, because Git by default pipes all output through a pager so you see only one page of log output at a time.
584 However, the time-limiting options such as `--since` and `--until` are very useful. For example, this command gets the list of commits made in the last two weeks:
586         $ git log --since=2.weeks
588 This command works with lots of formats — you can specify a specific date (“2008-01-15”) or a relative date such as “2 years 1 day 3 minutes ago”.
590 You can also filter the list to commits that match some search criteria. The `--author` option allows you to filter on a specific author, and the `--grep` option lets you search for keywords in the commit messages. (Note that if you want to specify both author and grep options, you have to add `--all-match` or the command will match commits with either.)
592 The last really useful option to pass to `git log` as a filter is a path. If you specify a directory or file name, you can limit the log output to commits that introduced a change to those files. This is always the last option and is generally preceded by double dashes (`--`) to separate the paths from the options.
594 In Table 2-3 we’ll list these and a few other common options for your reference.
596         Option  Description
597         -(n)    Show only the last n commits
598         --since, --after        Limit the commits to those made after the specified date.
599         --until, --before       Limit the commits to those made before the specified date.
600         --author        Only show commits in which the author entry matches the specified string.
601         --committer     Only show commits in which the committer entry matches the specified string.
603 For example, if you want to see which commits modifying test files in the Git source code history were committed by Junio Hamano and were not merges in the month of October 2008, you can run something like this:
605         $ git log --pretty="%h:%s" --author=gitster --since="2008-10-01" \
606            --before="2008-11-01" --no-merges -- t/
607         5610e3b - Fix testcase failure when extended attribute
608         acd3b9e - Enhance hold_lock_file_for_{update,append}()
609         f563754 - demonstrate breakage of detached checkout wi
610         d1a43f2 - reset --hard/read-tree --reset -u: remove un
611         51a94af - Fix "checkout --track -b newbranch" on detac
612         b0ad11e - pull: allow "git pull origin $something:$cur
614 Of the nearly 20,000 commits in the Git source code history, this command shows the 6 that match those criteria.
616 ### Using a GUI to Visualize History ###
618 If you like to use a more graphical tool to visualize your commit history, you may want to take a look at a Tcl/Tk program called gitk that is distributed with Git. Gitk is basically a visual `git log` tool, and it accepts nearly all the filtering options that `git log` does. If you type gitk on the command line in your project, you should see something like Figure 2-2.
620 Insert 18333fig0202.png 
621 Figure 2-2. The gitk history visualizer
623 You can see the commit history in the top half of the window along with a nice ancestry graph. The diff viewer in the bottom half of the window shows you the changes introduced at any commit you click.
625 ## Undoing Things ##
627 At any stage, you may want to undo something. Here, we’ll review a few basic tools for undoing changes that you’ve made. Be careful, because you can’t always undo some of these undos. This is one of the few areas in Git where you may lose some work if you do it wrong.
629 ### Changing Your Last Commit ###
631 One of the common undos takes place when you commit too early and possibly forget to add some files, or you mess up your commit message. If you want to try that commit again, you can run commit with the `--amend` option:
633         $ git commit --amend
635 This command takes your staging area and uses it for the commit. If you’ve have made no changes since your last commit (for instance, you run this command it immediately after your previous commit), then your snapshot will look exactly the same and all you’ll change is your commit message.
637 The same commit-message editor fires up, but it already contains the message of your previous commit. You can edit the message the same as always, but it overwrites your previous commit.
639 As an example, if you commit and then realize you forgot to stage the changes in a file you wanted to add to this commit, you can do something like this:
641         $ git commit -m 'initial commit'
642         $ git add forgotten_file
643         $ git commit --amend 
645 All three of these commands end up with a single commit — the second command replaces the results of the first.
647 ### Unstaging a Staged File ###
649 The next two sections demonstrate how to wrangle your staging area and working directory changes. The nice part is that the command you use to determine the state of those two areas also reminds you how to undo changes to them. For example, let’s say you’ve changed two files and want to commit them as two separate changes, but you accidentally type `git add *` and stage them both. How can you unstage one of the two? The `git status` command reminds you:
651         $ git add .
652         $ git status
653         # On branch master
654         # Changes to be committed:
655         #   (use "git reset HEAD <file>..." to unstage)
656         #
657         #       modified:   README.txt
658         #       modified:   benchmarks.rb
659         #
661 Right below the “Changes to be committed” text, it says use `git reset HEAD <file>...` to unstage. So, let’s use that advice to unstage the benchmarks.rb file:
663         $ git reset HEAD benchmarks.rb 
664         benchmarks.rb: locally modified
665         $ git status
666         # On branch master
667         # Changes to be committed:
668         #   (use "git reset HEAD <file>..." to unstage)
669         #
670         #       modified:   README.txt
671         #
672         # Changed but not updated:
673         #   (use "git add <file>..." to update what will be committed)
674         #   (use "git checkout -- <file>..." to discard changes in working directory)
675         #
676         #       modified:   benchmarks.rb
677         #
679 The command is a bit strange, but it works. The benchmarks.rb file is modified but once again unstaged.
681 ### Unmodifying a Modified File ###
683 What if you realize that you don’t want to keep your changes to the benchmarks.rb file? How can you easily unmodify it — revert it back to what it looked like when you last committed (or initially cloned, or however you got it into your working directory)? Luckily, `git status` tells you how to do that, too. In the last example output, the unstaged area looks like this:
685         # Changed but not updated:
686         #   (use "git add <file>..." to update what will be committed)
687         #   (use "git checkout -- <file>..." to discard changes in working directory)
688         #
689         #       modified:   benchmarks.rb
690         #
692 It tells you pretty explicitly how to discard the changes you’ve made (at least, the newer versions of Git, 1.6.1 and later, do this — if you have an older version, we highly recommend upgrading it to get some of these nicer usability features). Let’s do what it says:
694         $ git checkout -- benchmarks.rb
695         $ git status
696         # On branch master
697         # Changes to be committed:
698         #   (use "git reset HEAD <file>..." to unstage)
699         #
700         #       modified:   README.txt
701         #
703 You can see that the changes have been reverted. You should also realize that this is a dangerous command: any changes you made to that file are gone — you just copied another file over it. Don’t ever use this command unless you absolutely know that you don’t want the file. If you just need to get it out of the way, we’ll go over stashing and branching in the next chapter; these are generally better ways to go. 
705 Remember, anything that is committed in Git can almost always be recovered. Even commits that were on branches that were deleted or commits that were overwritten with an `--amend` commit can be recovered (see Chapter 9 for data recovery). However, anything you lose that was never committed is likely never to be seen again.
707 ## Working with Remotes ##
709 To be able to collaborate on any Git project, you need to know how to manage your remote repositories. Remote repositories are versions of your project that are hosted on the Internet or network somewhere. You can have several of them, each of which generally is either read-only or read/write for you. Collaborating with others involves managing these remote repositories and pushing and pulling data to and from them when you need to share work.
710 Managing remote repositories includes knowing how to add remote repositories, remove remotes that are no longer valid, manage various remote branches and define them as being tracked or not, and more. In this section, we’ll cover these remote-management skills.
712 ### Showing Your Remotes ###
714 To see which remote servers you have configured, you can run the git remote command. It lists the shortnames of each remote handle you’ve specified. If you’ve cloned your repository, you should at least see origin — that is the default name Git gives to the server you cloned from:
716         $ git clone git://github.com/schacon/ticgit.git
717         Initialized empty Git repository in /private/tmp/ticgit/.git/
718         remote: Counting objects: 595, done.
719         remote: Compressing objects: 100% (269/269), done.
720         remote: Total 595 (delta 255), reused 589 (delta 253)
721         Receiving objects: 100% (595/595), 73.31 KiB | 1 KiB/s, done.
722         Resolving deltas: 100% (255/255), done.
723         $ cd ticgit
724         $ git remote 
725         origin
727 You can also specify `-v`, which shows you the URL that Git has stored for the shortname to be expanded to:
729         $ git remote -v
730         origin  git://github.com/schacon/ticgit.git
732 If you have more than one remote, the command lists them all. For example, my Grit repository looks something like this.
734         $ cd grit
735         $ git remote -v
736         bakkdoor  git://github.com/bakkdoor/grit.git
737         cho45     git://github.com/cho45/grit.git
738         defunkt   git://github.com/defunkt/grit.git
739         koke      git://github.com/koke/grit.git
740         origin    git@github.com:mojombo/grit.git
742 This means we can pull contributions from any of these users pretty easily. But notice that only the origin remote is an SSH URL, so it’s the only one I can push to (we’ll cover why this is in Chapter 4).
744 ### Adding Remote Repositories ###
746 I’ve mentioned and given some demonstrations of adding remote repositories in previous sections, but here is how to do it explicitly. To add a new remote Git repository as a shortname you can reference easily, run `git remote add [shortname] [url]`:
748         $ git remote
749         origin
750         $ git remote add pb git://github.com/paulboone/ticgit.git
751         $ git remote -v
752         origin  git://github.com/schacon/ticgit.git
753         pb      git://github.com/paulboone/ticgit.git
755 Now you can use the string pb on the command line in lieu of the whole URL. For example, if you want to fetch all the information that Paul has but that you don’t yet have in your repository, you can run git fetch pb:
757         $ git fetch pb
758         remote: Counting objects: 58, done.
759         remote: Compressing objects: 100% (41/41), done.
760         remote: Total 44 (delta 24), reused 1 (delta 0)
761         Unpacking objects: 100% (44/44), done.
762         From git://github.com/paulboone/ticgit
763          * [new branch]      master     -> pb/master
764          * [new branch]      ticgit     -> pb/ticgit
766 Paul’s master branch is accessible locally as `pb/master` — you can merge it into one of your branches, or you can check out a local branch at that point if you want to inspect it.
768 ### Fetching and Pulling from Your Remotes ###
770 As you just saw, to get data from your remote projects, you can run
772         $ git fetch [remote-name]
774 The command goes out to that remote project and pulls down all the data from that remote project that you don’t have yet. After you do this, you should have references to all the branches from that remote, which you can merge in or inspect at any time. (We’ll go over what branches are and how to use them in much more detail in Chapter 3.)
776 If you cloned a repository, the command automatically adds that remote repository under the name origin. So, `git fetch origin` fetches any new work that has been pushed to that server since you cloned (or last fetched from) it. It’s important to note that the fetch command pulls the data to your local repository — it doesn’t automatically merge it with any of your work or modify what you’re currently working on. You have to merge it manually into your work when you’re ready.
778 If you have a branch set up to track a remote branch (see the next section and Chapter 3 for more information), you can use the `git pull` command to automatically fetch and then merge a remote branch into your current branch. This may be an easier or more comfortable workflow for you; and by default, the `git clone` command automatically sets up your local master branch to track the remote master branch on the server you cloned from (assuming the remote has a master branch). Running `git pull` generally fetches data from the server you originally cloned from and automatically tries to merge it into the code you’re currently working on.
780 ### Pushing to Your Remotes ###
782 When you have your project at a point that you want to share, you have to push it upstream. The command for this is simple: `git push [remote-name] [branch-name]`. If you want to push your master branch to your `origin` server (again, cloning generally sets up both of those names for you automatically), then you can run this to push your work back up to the server:
784         $ git push origin master
786 This command works only if you cloned from a server to which you have write access and if nobody has pushed in the meantime. If you and someone else clone at the same time and they push upstream and then you push upstream, your push will rightly be rejected. You’ll have to pull down their work first and incorporate it into yours before you’ll be allowed to push. See Chapter 3 for more detailed information on how to push to remote servers.
788 ### Inspecting a Remote ###
790 If you want to see more information about a particular remote, you can use the `git remote show [remote-name]` command. If you run this command with a particular shortname, such as `origin`, you get something like this:
792         $ git remote show origin
793         * remote origin
794           URL: git://github.com/schacon/ticgit.git
795           Remote branch merged with 'git pull' while on branch master
796             master
797           Tracked remote branches
798             master
799             ticgit
801 It lists the URL for the remote repository as well as the tracking branch information. The command helpfully tells you that if you’re on the master branch and you run `git pull`, it will automatically merge in the master branch on the remote after it fetches all the remote references. It also lists all the remote references it has pulled down.
803 That is a simple example you’re likely to encounter. When you’re using Git more heavily, however, you may see much more information from `git remote show`:
805         $ git remote show origin
806         * remote origin
807           URL: git@github.com:defunkt/github.git
808           Remote branch merged with 'git pull' while on branch issues
809             issues
810           Remote branch merged with 'git pull' while on branch master
811             master
812           New remote branches (next fetch will store in remotes/origin)
813             caching
814           Stale tracking branches (use 'git remote prune')
815             libwalker
816             walker2
817           Tracked remote branches
818             acl
819             apiv2
820             dashboard2
821             issues
822             master
823             postgres
824           Local branch pushed with 'git push'
825             master:master
827 This command shows which branch is automatically pushed when you run `git push` on certain branches. It also shows you which remote branches on the server you don’t yet have, which remote branches you have that have been removed from the server, and multiple branches that are automatically merged when you run `git pull`.
829 ### Removing and Renaming Remotes ###
831 If you want to rename a reference, in newer versions of Git you can run `git remote rename` to change a remote’s shortname. For instance, if you want to rename `pb` to `paul`, you can do so with `git remote rename`:
833         $ git remote rename pb paul
834         $ git remote
835         origin
836         paul
838 It’s worth mentioning that this changes your remote branch names, too. What used to be referenced at `pb/master` is now at `paul/master`.
840 If you want to remove a reference for some reason — you’ve moved the server or are no longer using a particular mirror, or perhaps a contributor isn’t contributing anymore — you can use `git remote rm`:
842         $ git remote rm paul
843         $ git remote
844         origin
846 ## Tagging ##
848 Like most VCSs, Git has the ability to tag specific points in history as being important. Generally, people use this functionality to mark release points (v1.0, and so on). In this section, you’ll learn how to list the available tags, how to create new tags, and what the different types of tags are.
850 ### Listing Your Tags ###
852 Listing the available tags in Git is straightforward. Just type `git tag`:
854         $ git tag
855         v0.1
856         v1.3
858 This command lists the tags in alphabetical order; the order in which they appear has no real importance.
860 You can also search for tags with a particular pattern. The Git source repo, for instance, contains more than 240 tags. If you’re only interested in looking at the 1.4.2 series, you can run this:
862         $ git tag -l v1.4.2.*
863         v1.4.2.1
864         v1.4.2.2
865         v1.4.2.3
866         v1.4.2.4
868 ### Creating Tags ###
870 Git uses two main types of tags: lightweight and annotated. A lightweight tag is very much like a branch that doesn’t change — it’s just a pointer to a specific commit. Annotated tags, however, are stored as full objects in the Git database. They’re checksummed; contain the tagger name, e-mail, and date; have a tagging message; and can be signed and verified with GNU Privacy Guard (GPG). It’s generally recommended that you create annotated tags so you can have all this information; but if you want a temporary tag or for some reason don’t want to keep the other information, lightweight tags are available too.
872 ### Annotated Tags ###
874 Creating an annotated tag in Git is simple. The easiest way is to specify `-a` when you run the `tag` command:
876         $ git tag -a v1.4 -m 'my version 1.4'
877         $ git tag
878         v0.1
879         v1.3
880         v1.4
882 The `-m` specifies a tagging message, which is stored with the tag. If you don’t specify a message for an annotated tag, Git launches your editor so you can type it in.
884 You can see the tag data along with the commit that was tagged by using the `git show` command:
886         $ git show v1.4
887         tag v1.4
888         Tagger: Scott Chacon <schacon@gee-mail.com>
889         Date:   Mon Feb 9 14:45:11 2009 -0800
891         my version 1.4
892         commit 15027957951b64cf874c3557a0f3547bd83b3ff6
893         Merge: 4a447f7... a6b4c97...
894         Author: Scott Chacon <schacon@gee-mail.com>
895         Date:   Sun Feb 8 19:02:46 2009 -0800
897             Merge branch 'experiment'
899 That shows the tagger information, the date the commit was tagged, and the annotation message before showing the commit information.
901 ### Signed Tags ###
903 You can also sign your tags with GPG, assuming you have a private key. All you have to do is use `-s` instead of `-a`:
905         $ git tag -s v1.5 -m 'my signed 1.5 tag'
906         You need a passphrase to unlock the secret key for
907         user: "Scott Chacon <schacon@gee-mail.com>"
908         1024-bit DSA key, ID F721C45A, created 2009-02-09
910 If you run `git show` on that tag, you can see your GPG signature attached to it:
912         $ git show v1.5
913         tag v1.5
914         Tagger: Scott Chacon <schacon@gee-mail.com>
915         Date:   Mon Feb 9 15:22:20 2009 -0800
917         my signed 1.5 tag
918         -----BEGIN PGP SIGNATURE-----
919         Version: GnuPG v1.4.8 (Darwin)
921         iEYEABECAAYFAkmQurIACgkQON3DxfchxFr5cACeIMN+ZxLKggJQf0QYiQBwgySN
922         Ki0An2JeAVUCAiJ7Ox6ZEtK+NvZAj82/
923         =WryJ
924         -----END PGP SIGNATURE-----
925         commit 15027957951b64cf874c3557a0f3547bd83b3ff6
926         Merge: 4a447f7... a6b4c97...
927         Author: Scott Chacon <schacon@gee-mail.com>
928         Date:   Sun Feb 8 19:02:46 2009 -0800
930             Merge branch 'experiment'
932 A bit later, you’ll learn how to verify signed tags.
934 ### Lightweight Tags ###
936 Another way to tag commits is with a lightweight tag. This is basically the commit checksum stored in a file — no other information is kept. To create a lightweight tag, don’t supply the `-a`, `-s`, or `-m` option:
938         $ git tag v1.4-lw
939         $ git tag
940         v0.1
941         v1.3
942         v1.4
943         v1.4-lw
944         v1.5
946 This time, if you run `git show` on the tag, you don’t see the extra tag information. The command just shows the commit:
948         $ git show v1.4-lw
949         commit 15027957951b64cf874c3557a0f3547bd83b3ff6
950         Merge: 4a447f7... a6b4c97...
951         Author: Scott Chacon <schacon@gee-mail.com>
952         Date:   Sun Feb 8 19:02:46 2009 -0800
954             Merge branch 'experiment'
956 ### Verifying Tags ###
958 To verify a signed tag, you use `git tag -v [tag-name]`. This command uses GPG to verify the signature. You need the signer’s public key in your keyring for this to work properly:
960         $ git tag -v v1.4.2.1
961         object 883653babd8ee7ea23e6a5c392bb739348b1eb61
962         type commit
963         tag v1.4.2.1
964         tagger Junio C Hamano <junkio@cox.net> 1158138501 -0700
966         GIT 1.4.2.1
968         Minor fixes since 1.4.2, including git-mv and git-http with alternates.
969         gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A
970         gpg: Good signature from "Junio C Hamano <junkio@cox.net>"
971         gpg:                 aka "[jpeg image of size 1513]"
972         Primary key fingerprint: 3565 2A26 2040 E066 C9A7  4A7D C0C6 D9A4 F311 9B9A
974 If you don’t have the signer’s public key, you get something like this instead:
976         gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A
977         gpg: Can't check signature: public key not found
978         error: could not verify the tag 'v1.4.2.1'
980 ### Tagging Later ###
982 You can also tag commits after you’ve moved past them. Suppose your commit history looks like this:
984         $ git log --pretty=oneline
985         15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment'
986         a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support
987         0d52aaab4479697da7686c15f77a3d64d9165190 one more thing
988         6d52a271eda8725415634dd79daabbc4d9b6008e Merge branch 'experiment'
989         0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc added a commit function
990         4682c3261057305bdd616e23b64b0857d832627b added a todo file
991         166ae0c4d3f420721acbb115cc33848dfcc2121a started write support
992         9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile
993         964f16d36dfccde844893cac5b347e7b3d44abbc commit the todo
994         8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme
996 Now, suppose you forgot to tag the project at v1.2, which was at the "updated rakefile" commit. You can add it after the fact. To tag that commit, you specify the commit checksum (or part of it) at the end of the command:
998         $ git tag -a v1.2 9fceb02
1000 You can see that you’ve tagged the commit:
1002         $ git tag 
1003         v0.1
1004         v1.2
1005         v1.3
1006         v1.4
1007         v1.4-lw
1008         v1.5
1010         $ git show v1.2
1011         tag v1.2
1012         Tagger: Scott Chacon <schacon@gee-mail.com>
1013         Date:   Mon Feb 9 15:32:16 2009 -0800
1015         version 1.2
1016         commit 9fceb02d0ae598e95dc970b74767f19372d61af8
1017         Author: Magnus Chacon <mchacon@gee-mail.com>
1018         Date:   Sun Apr 27 20:43:35 2008 -0700
1020             updated rakefile
1021         ...
1023 ### Sharing Tags ###
1025 By default, the `git push` command doesn’t transfer tags to remote servers. You will have to explicitly push tags to a shared server after you have created them.  This process is just like sharing remote branches – you can run `git push origin [tagname]`.
1027         $ git push origin v1.5
1028         Counting objects: 50, done.
1029         Compressing objects: 100% (38/38), done.
1030         Writing objects: 100% (44/44), 4.56 KiB, done.
1031         Total 44 (delta 18), reused 8 (delta 1)
1032         To git@github.com:schacon/simplegit.git
1033         * [new tag]         v1.5 -> v1.5
1035 If you have a lot of tags that you want to push up at once, you can also use the `--tags` option to the `git push` command.  This will transfer all of your tags to the remote server that are not already there.
1037         $ git push origin --tags
1038         Counting objects: 50, done.
1039         Compressing objects: 100% (38/38), done.
1040         Writing objects: 100% (44/44), 4.56 KiB, done.
1041         Total 44 (delta 18), reused 8 (delta 1)
1042         To git@github.com:schacon/simplegit.git
1043          * [new tag]         v0.1 -> v0.1
1044          * [new tag]         v1.2 -> v1.2
1045          * [new tag]         v1.4 -> v1.4
1046          * [new tag]         v1.4-lw -> v1.4-lw
1047          * [new tag]         v1.5 -> v1.5
1049 Now, when someone else clones or pulls from your repository, they will get all your tags as well.
1051 ## Tips and Tricks ##
1053 Before we finish this chapter on basic Git, a few little tips and tricks may make your Git experience a bit simpler, easier, or more familiar. Many people use Git without using any of these tips, and we won’t refer to them or assume you’ve used them later in the book; but you should probably know how to do them.
1055 ### Auto-Completion ###
1057 If you use the Bash shell, Git comes with a nice auto-completion script you can enable. Download the Git source code, and look in the `contrib/completion` directory; there should be a file called `git-completion.bash`. Copy this file to your home directory, and add this to your `.bashrc` file:
1059         source ~/.git-completion.bash
1061 If you want to set up Git to automatically have Bash shell completion for all users, copy this script to the `/opt/local/etc/bash_completion.d` directory on Mac systems or to the `/etc/bash_completion.d/` directory on Linux systems. This is a directory of scripts that Bash will automatically load to provide shell completions.
1063 If you’re using Windows with Git Bash, which is the default when installing Git on Windows with msysGit, auto-completion should be preconfigured.
1065 Press the Tab key when you’re writing a Git command, and it should return a set of suggestions for you to pick from:
1067         $ git co<tab><tab>
1068         commit config
1070 In this case, typing git co and then pressing the Tab key twice suggests commit and config. Adding `m<tab>` completes `git commit` automatically.
1072 This also works with options, which is probably more useful. For instance, if you’re running a `git log` command and can’t remember one of the options, you can start typing it and press Tab to see what matches:
1074         $ git log --s<tab>
1075         --shortstat  --since=  --src-prefix=  --stat   --summary
1077 That’s a pretty nice trick and may save you some time and documentation reading.
1079 ### Git Aliases ###
1081 Git doesn’t infer your command if you type it in partially. If you don’t want to type the entire text of each of the Git commands, you can easily set up an alias for each command using `git config`. Here are a couple of examples you may want to set up:
1083         $ git config --global alias.co checkout
1084         $ git config --global alias.br branch
1085         $ git config --global alias.ci commit
1086         $ git config --global alias.st status
1088 This means that, for example, instead of typing `git commit`, you just need to type `git ci`. As you go on using Git, you’ll probably use other commands frequently as well; in this case, don’t hesitate to create new aliases.
1090 This technique can also be very useful in creating commands that you think should exist. For example, to correct the usability problem you encountered with unstaging a file, you can add your own unstage alias to Git:
1092         $ git config --global alias.unstage 'reset HEAD --'
1094 This makes the following two commands equivalent:
1096         $ git unstage fileA
1097         $ git reset HEAD fileA
1099 This seems a bit clearer. It’s also common to add a `last` command, like this:
1101         $ git config --global alias.last 'log -1 HEAD'
1103 This way, you can see the last commit easily:
1105         $ git last
1106         commit 66938dae3329c7aebe598c2246a8e6af90d04646
1107         Author: Josh Goebel <dreamer3@example.com>
1108         Date:   Tue Aug 26 19:48:51 2008 +0800
1110             test for current head
1112             Signed-off-by: Scott Chacon <schacon@example.com>
1114 As you can tell, Git simply replaces the new command with whatever you alias it for. However, maybe you want to run an external command, rather than a Git subcommand. In that case, you start the command with a `!` character. This is useful if you write your own tools that work with a Git repository. We can demonstrate by aliasing `git visual` to run `gitk`:
1116         $ git config --global alias.visual "!gitk"
1118 ## Summary ##
1120 At this point, you can do all the basic local Git operations — creating or cloning a repository, making changes, staging and committing those changes, and viewing the history of all the changes the repository has been through. Next, we’ll cover Git’s killer feature: its branching model.