From 1667d89ffd4bcc4d4a6fd84ec89820ba53aa1c1f Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Fri, 2 May 2014 20:01:42 -0700 Subject: [PATCH 1/4] Update first third; misc edits and formatting --- en/book/02-git-basics/chapter2.asc | 371 +++++++++++++++++------------ en/book/images/18333fig0201-tn.png | Bin 45496 -> 57459 bytes 2 files changed, 214 insertions(+), 157 deletions(-) diff --git a/en/book/02-git-basics/chapter2.asc b/en/book/02-git-basics/chapter2.asc index 1c4b8f4b7..2630801db 100644 --- a/en/book/02-git-basics/chapter2.asc +++ b/en/book/02-git-basics/chapter2.asc @@ -11,15 +11,21 @@ You can get a Git project using two main approaches. The first takes an existing If you’re starting to track an existing project in Git, you need to go to the project’s directory and type - $ git init +[source,shell] +---- +$ git init +---- -This creates a new subdirectory named .git that contains all of your necessary repository files — a Git repository skeleton. At this point, nothing in your project is tracked yet. (See <<_git_internals>> for more information about exactly what files are contained in the `.git` directory you just created.) +This creates a new subdirectory named `.git` that contains all of your necessary repository files — a Git repository skeleton. At this point, nothing in your project is tracked yet. (See <<_git_internals>> for more information about exactly what files are contained in the `.git` directory you just created.) If you want to start version-controlling existing files (as opposed to an empty directory), you should probably begin tracking those files and do an initial commit. You can accomplish that with a few git add commands that specify the files you want to track, followed by a commit: - $ git add *.c - $ git add README - $ git commit -m 'initial project version' +[source,shell] +---- +$ git add *.c +$ git add README +$ git commit -m 'initial project version' +---- We’ll go over what these commands do in just a minute. At this point, you have a Git repository with tracked files and an initial commit. @@ -29,15 +35,21 @@ If you want to get a copy of an existing Git repository — for example, a proje You clone a repository with `git clone [url]`. For example, if you want to clone the Ruby Git library called Grit, you can do so like this: - $ git clone git://github.com/schacon/grit.git +[source,shell] +---- +$ git clone git://github.com/schacon/grit.git +---- That creates a directory named ``grit'', initializes a `.git` directory inside it, pulls down all the data for that repository, and checks out a working copy of the latest version. If you go into the new `grit` directory, you’ll see the project files in there, ready to be worked on or used. If you want to clone the repository into a directory named something other than grit, you can specify that as the next command-line option: - $ git clone git://github.com/schacon/grit.git mygrit +[source,shell] +---- +$ git clone git://github.com/schacon/grit.git mygrit +---- -That command does the same thing as the previous one, but the target directory is called mygrit. +That command does the same thing as the previous one, but the target directory is called `mygrit`. -Git has a number of different transfer protocols you can use. The previous example uses the `git://` protocol, but you may also see `http(s)://` or `user@server:/path.git`, which uses the SSH transfer protocol. <<_git_on_the_server>> will introduce all of the available options the server can set up to access your Git repository and the pros and cons of each. +Git has a number of different transfer protocols you can use. The previous example uses the `git://` protocol, but you may also see `http(s)://` or `user@server:path/to/repo.git`, which uses the SSH transfer protocol. <<_git_on_the_server>> will introduce all of the available options the server can set up to access your Git repository and the pros and cons of each. === Recording Changes to the Repository @@ -53,203 +65,248 @@ image::images/18333fig0201-tn.png[The lifecycle of the status of your files.] ==== Checking the Status of Your Files -The main tool you use to determine which files are in which state is the git status command. If you run this command directly after a clone, you should see something like this: +The main tool you use to determine which files are in which state is the `git status` command. If you run this command directly after a clone, you should see something like this: - $ git status - # On branch master - nothing to commit (working directory clean) +[source,shell] +---- +$ git status +On branch master +nothing to commit, working directory clean +---- This means you have a clean working directory — in other words, there are no tracked and modified files. Git also doesn’t see any untracked files, or they would be listed here. Finally, the command tells you which branch you’re on. For now, that is always master, which is the default; you won’t worry about it here. The next chapter will go over branches and references in detail. Let’s say you add a new file to your project, a simple README file. If the file didn’t exist before, and you run `git status`, you see your untracked file like so: - $ vim README - $ git status - # On branch master - # Untracked files: - # (use "git add ..." to include in what will be committed) - # - # README - nothing added to commit but untracked files present (use "git add" to track) +[source,shell] +---- +$ vim README +$ git status +On branch master +Untracked files: + (use "git add ..." to include in what will be committed) + + README -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. +nothing added to commit but untracked files present (use "git add" to track) +---- + +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. ==== Tracking New Files In order to begin tracking a new file, you use the command `git add`. To begin tracking the README file, you can run this: - $ git add README +[source,shell] +---- +$ git add README +---- If you run your status command again, you can see that your README file is now tracked and staged: - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # +[source,shell] +---- +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + new file: README + +---- -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. +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. ==== Staging Modified Files -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: +Let’s change a file that was already tracked. If you change a previously tracked file called `benchmarks.rb` and then run your `git status` command again, you get something that looks like this: - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # - # modified: benchmarks.rb - # +[source,shell] +---- +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) -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: + new file: README - $ git add benchmarks.rb - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # modified: benchmarks.rb - # +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) -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: + modified: benchmarks.rb - $ vim benchmarks.rb - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # modified: benchmarks.rb - # - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # - # modified: benchmarks.rb - # +---- -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: +The `benchmarks.rb` file appears under a section named ``Changed but not staged for commit'' — 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: - $ git add benchmarks.rb - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # modified: benchmarks.rb - # +[source,shell] +---- +$ git add benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + new file: README + modified: benchmarks.rb + +---- + +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: + +[source,shell] +---- +$ vim benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + new file: README + modified: benchmarks.rb + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + + modified: benchmarks.rb +---- + +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: + +[source,shell] +---- +$ git add benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + new file: README + modified: benchmarks.rb +---- ==== Ignoring Files -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: +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: - $ cat .gitignore - *.[oa] - *~ +[source,shell] +---- +$ cat .gitignore +*.[oa] +*~ +---- -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. +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. -The rules for the patterns you can put in the .gitignore file are as follows: +The rules for the patterns you can put in the `.gitignore` file are as follows: -* Blank lines or lines starting with # are ignored. +* Blank lines or lines starting with `#` are ignored. * Standard glob patterns work. * You can end patterns with a forward slash (`/`) to specify a directory. * You can negate a pattern by starting it with an exclamation point (`!`). -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) . +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). +You can also use two asterisks to match nested directories; `a/**/z` would match `a/z`, `a/b/z`, `a/b/c/z`, and so on. Here is another example .gitignore file: - # a comment - this is ignored - *.a # no .a files - !lib.a # but do track lib.a, even though you're ignoring .a files above - /TODO # only ignore the root TODO file, not subdir/TODO - build/ # ignore all files in the build/ directory - doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt +[source,shell] +---- +# a comment - this is ignored +*.a # no .a files +!lib.a # but do track lib.a, even though you're ignoring .a files above +/TODO # only ignore the root TODO file, not subdir/TODO +build/ # ignore all files in the build/ directory +doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt +---- ==== Viewing Your Staged and Unstaged Changes -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. - -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: +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. - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # - # modified: benchmarks.rb - # +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 `git status` command, you once again see something like this: -To see what you’ve changed but not yet staged, type `git diff` with no other arguments: +[source,shell] +---- +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) - $ git diff - diff --git a/benchmarks.rb b/benchmarks.rb - index 3cb747f..da65585 100644 - --- a/benchmarks.rb - +++ b/benchmarks.rb - @@ -36,6 +36,10 @@ def main - @commit.parents[0].parents[0].parents[0] - end + new file: README - + run_code(x, 'commits 1') do - + git.commits.size - + end - + - run_code(x, 'commits 2') do - log = git.commits('master', 15) - log.size +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) -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. + modified: benchmarks.rb +---- -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: +To see what you’ve changed but not yet staged, type `git diff` with no other arguments: - $ git diff --cached - diff --git a/README b/README - new file mode 100644 - index 0000000..03902a1 - --- /dev/null - +++ b/README2 - @@ -0,0 +1,5 @@ - +grit - + by Tom Preston-Werner, Chris Wanstrath - + http://github.com/mojombo/grit - + - +Grit is a Ruby library for extracting information from a Git repository +[source,shell] +---- +$ git diff +diff --git a/benchmarks.rb b/benchmarks.rb +index 3cb747f..e445e28 100644 +--- a/benchmarks.rb ++++ b/benchmarks.rb +@@ -36,6 +36,10 @@ def main + @commit.parents[0].parents[0].parents[0] + end + ++ run_code(x, 'commits 1') do ++ git.commits.size ++ end ++ + run_code(x, 'commits 2') do + log = git.commits('master', 15) + log.size +---- -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. +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. -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: +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: - $ git add benchmarks.rb - $ echo '# test line' >> benchmarks.rb - $ git status - # On branch master - # - # Changes to be committed: - # - # modified: benchmarks.rb - # - # Changed but not updated: - # - # modified: benchmarks.rb - # +[source,shell] +---- +$ git diff --cached +diff --git a/README b/README +new file mode 100644 +index 0000000..03902a1 +--- /dev/null ++++ b/README2 +@@ -0,0 +1,5 @@ ++grit ++ by Tom Preston-Werner, Chris Wanstrath ++ http://github.com/mojombo/grit ++ ++Grit is a Ruby library for extracting information from a Git repository +---- + +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. + +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: + +[source,shell] +---- +$ git add benchmarks.rb +$ echo '# test line' >> benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + modified: benchmarks.rb + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + + modified: benchmarks.rb +---- Now you can use `git diff` to see what is still unstaged @@ -341,7 +398,7 @@ Notice how you don’t have to run `git add` on the benchmarks.rb file in this c 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. -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: +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: $ rm grit.gemspec $ git status @@ -576,7 +633,7 @@ Those are only some simple output-formatting options to `git log` — there are --name-only Show the list of files modified after the commit information. --name-status Show the list of files affected with added/modified/deleted information as well. --abbrev-commit Show only the first few characters of the SHA-1 checksum instead of all 40. - --relative-date Display the date in a relative format (for example, “2 weeks ago”) instead of using the full date format. + --relative-date Display the date in a relative format (for example, ``2 weeks ago'') instead of using the full date format. --graph Display an ASCII graph of the branch and merge history beside the log output. --pretty Show commits in an alternate format. Options include oneline, short, full, fuller, and format (where you specify your own format). @@ -588,7 +645,7 @@ However, the time-limiting options such as `--since` and `--until` are very usef $ git log --since=2.weeks -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”. +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''. 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.) @@ -678,7 +735,7 @@ The next two sections demonstrate how to wrangle your staging area and working d # modified: benchmarks.rb # -Right below the “Changes to be committed” text, it says use `git reset HEAD ...` to unstage. So, let’s use that advice to unstage the benchmarks.rb file: +Right below the ``Changes to be committed'' text, it says use `git reset HEAD ...` to unstage. So, let’s use that advice to unstage the benchmarks.rb file: $ git reset HEAD benchmarks.rb benchmarks.rb: locally modified diff --git a/en/book/images/18333fig0201-tn.png b/en/book/images/18333fig0201-tn.png index 60cf97d5caf48eec8f6bd2b63544a9b31472b2cb..6585c66adb0e4de1462433d35293935ff0d77179 100644 GIT binary patch literal 57459 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 S5h1<+0000^3gOflQ9}x=D81s*?@Sovf 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≧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 From c2d71b28f34169db8fb811d558d67d10007cdc38 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Sat, 3 May 2014 20:59:03 -0700 Subject: [PATCH 2/4] Update the rest --- en/book/02-git-basics/chapter2.asc | 1293 ++++++++++++++---------- en/book/11-git-internals/chapter11.asc | 1 + 2 files changed, 743 insertions(+), 551 deletions(-) diff --git a/en/book/02-git-basics/chapter2.asc b/en/book/02-git-basics/chapter2.asc index 2630801db..4b9cefd54 100644 --- a/en/book/02-git-basics/chapter2.asc +++ b/en/book/02-git-basics/chapter2.asc @@ -16,7 +16,7 @@ If you’re starting to track an existing project in Git, you need to go to the $ git init ---- -This creates a new subdirectory named `.git` that contains all of your necessary repository files — a Git repository skeleton. At this point, nothing in your project is tracked yet. (See <<_git_internals>> for more information about exactly what files are contained in the `.git` directory you just created.) +This creates a new subdirectory named `.git` that contains all of your necessary repository files – a Git repository skeleton. At this point, nothing in your project is tracked yet. (See <<_git_internals>> for more information about exactly what files are contained in the `.git` directory you just created.) If you want to start version-controlling existing files (as opposed to an empty directory), you should probably begin tracking those files and do an initial commit. You can accomplish that with a few git add commands that specify the files you want to track, followed by a commit: @@ -31,7 +31,7 @@ We’ll go over what these commands do in just a minute. At this point, you have ==== Cloning an Existing Repository -If you want to get a copy of an existing Git repository — for example, a project you’d like to contribute to — the command you need is git clone. If you’re familiar with other VCS systems such as Subversion, you’ll notice that the command is clone and not checkout. This is an important distinction — Git receives a copy of nearly all data that the server has. Every version of every file for the history of the project is pulled down when you run `git clone`. In fact, if your server disk gets corrupted, you can use any of the clones on any client to set the server back to the state it was in when it was cloned (you may lose some server-side hooks and such, but all the versioned data would be there — see <<_git_on_the_server>> for more details). +If you want to get a copy of an existing Git repository – for example, a project you’d like to contribute to – the command you need is git clone. If you’re familiar with other VCS systems such as Subversion, you’ll notice that the command is clone and not checkout. This is an important distinction – Git receives a copy of nearly all data that the server has. Every version of every file for the history of the project is pulled down when you run `git clone`. In fact, if your server disk gets corrupted, you can use any of the clones on any client to set the server back to the state it was in when it was cloned (you may lose some server-side hooks and such, but all the versioned data would be there – see <<_git_on_the_server>> for more details). You clone a repository with `git clone [url]`. For example, if you want to clone the Ruby Git library called Grit, you can do so like this: @@ -74,7 +74,7 @@ On branch master nothing to commit, working directory clean ---- -This means you have a clean working directory — in other words, there are no tracked and modified files. Git also doesn’t see any untracked files, or they would be listed here. Finally, the command tells you which branch you’re on. For now, that is always master, which is the default; you won’t worry about it here. The next chapter will go over branches and references in detail. +This means you have a clean working directory – in other words, there are no tracked and modified files. Git also doesn’t see any untracked files, or they would be listed here. Finally, the command tells you which branch you’re on. For now, that is always master, which is the default; you won’t worry about it here. The next chapter will go over branches and references in detail. Let’s say you add a new file to your project, a simple README file. If the file didn’t exist before, and you run `git status`, you see your untracked file like so: @@ -115,7 +115,7 @@ Changes to be committed: ---- -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. +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. ==== Staging Modified Files @@ -138,7 +138,7 @@ Changes not staged for commit: ---- -The `benchmarks.rb` file appears under a section named ``Changed but not staged for commit'' — 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: +The `benchmarks.rb` file appears under a section named ``Changed but not staged for commit'' – 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: [source,shell] ---- @@ -198,7 +198,7 @@ $ cat .gitignore *~ ---- -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. +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. The rules for the patterns you can put in the `.gitignore` file are as follows: @@ -310,368 +310,454 @@ Changes not staged for commit: Now you can use `git diff` to see what is still unstaged - $ git diff - diff --git a/benchmarks.rb b/benchmarks.rb - index e445e28..86b2f7c 100644 - --- a/benchmarks.rb - +++ b/benchmarks.rb - @@ -127,3 +127,4 @@ end - main() +[source,shell] +---- +$ git diff +diff --git a/benchmarks.rb b/benchmarks.rb +index e445e28..86b2f7c 100644 +--- a/benchmarks.rb ++++ b/benchmarks.rb +@@ -127,3 +127,4 @@ end + main() - ##pp Grit::GitRuby.cache_client.stats - +# test line + ##pp Grit::GitRuby.cache_client.stats ++# test line +---- and `git diff --cached` to see what you’ve staged so far: - $ git diff --cached - diff --git a/benchmarks.rb b/benchmarks.rb - index 3cb747f..e445e28 100644 - --- a/benchmarks.rb - +++ b/benchmarks.rb - @@ -36,6 +36,10 @@ def main - @commit.parents[0].parents[0].parents[0] - end - - + run_code(x, 'commits 1') do - + git.commits.size - + end - + - run_code(x, 'commits 2') do - log = git.commits('master', 15) - log.size +[source,shell] +---- +$ git diff --cached +diff --git a/benchmarks.rb b/benchmarks.rb +index 3cb747f..e445e28 100644 +--- a/benchmarks.rb ++++ b/benchmarks.rb +@@ -36,6 +36,10 @@ def main + @commit.parents[0].parents[0].parents[0] + end + ++ run_code(x, 'commits 1') do ++ git.commits.size ++ end ++ + run_code(x, 'commits 2') do + log = git.commits('master', 15) + log.size +---- ==== Committing Your Changes -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. +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. 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`: - $ git commit +[source,shell] +---- +$ git commit +---- -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 <<_getting_started>>). +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 <<_getting_started>>). The editor displays the following text (this example is a Vim screen): - # Please enter the commit message for your changes. Lines starting - # with '#' will be ignored, and an empty message aborts the commit. - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # new file: README - # modified: benchmarks.rb - ~ - ~ - ~ - ".git/COMMIT_EDITMSG" 10L, 283C +[source,shell] +---- + +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# On branch master +# Changes to be committed: +# new file: README +# modified: benchmarks.rb +# +~ +~ +~ +".git/COMMIT_EDITMSG" 9L, 283C +---- 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). Alternatively, you can type your commit message inline with the `commit` command by specifying it after a -m flag, like this: - $ git commit -m "Story 182: Fix benchmarks for speed" - [master]: created 463dc4f: "Fix benchmarks for speed" - 2 files changed, 3 insertions(+), 0 deletions(-) - create mode 100644 README +[source,shell] +---- +$ git commit -m "Story 182: Fix benchmarks for speed" +[master 463dc4f] Story 182: Fix benchmarks for speed + 2 files changed, 2 insertions(+) + create mode 100644 README +---- -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. +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. 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. ==== Skipping the Staging Area -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: +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. Adding 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: + +[source,shell] +---- +$ git status +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + + modified: benchmarks.rb - $ git status - # On branch master - # - # Changed but not updated: - # - # modified: benchmarks.rb - # - $ git commit -a -m 'added new benchmarks' - [master 83e38c7] added new benchmarks - 1 files changed, 5 insertions(+), 0 deletions(-) +no changes added to commit (use "git add" and/or "git commit -a") +$ git commit -a -m 'added new benchmarks' +[master 83e38c7] added new benchmarks + 1 file changed, 5 insertions(+), 0 deletions(-) +---- Notice how you don’t have to run `git add` on the benchmarks.rb file in this case before you commit. ==== Removing Files -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. +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 the next time around. 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: - $ rm grit.gemspec - $ git status - # On branch master - # - # Changed but not updated: - # (use "git add/rm ..." to update what will be committed) - # - # deleted: grit.gemspec - # +[source,shell] +---- +$ rm grit.gemspec +$ git status +On branch master +Changes not staged for commit: + (use "git add/rm ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + + deleted: grit.gemspec + +no changes added to commit (use "git add" and/or "git commit -a") +---- Then, if you run `git rm`, it stages the file’s removal: - $ git rm grit.gemspec - rm 'grit.gemspec' - $ git status - # On branch master - # - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # deleted: grit.gemspec - # +[source,shell] +---- +$ git rm grit.gemspec +rm 'grit.gemspec' +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + deleted: grit.gemspec +---- 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. 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: - $ git rm --cached readme.txt +[source,shell] +---- +$ git rm --cached readme.txt +---- You can pass files, directories, and file-glob patterns to the `git rm` command. That means you can do things such as - $ git rm log/\*.log +[source,shell] +---- +$ git rm log/\*.log +---- 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: - $ git rm \*~ +[source,shell] +---- +$ git rm \*~ +---- This command removes all files that end with `~`. ==== Moving Files -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. +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. 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 - $ git mv file_from file_to +[source,shell] +---- +$ git mv file_from file_to +---- 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: - $ git mv README.txt README - $ git status - # On branch master - # Your branch is ahead of 'origin/master' by 1 commit. - # - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # renamed: README.txt -> README - # +[source,shell] +---- +$ git mv README.md README +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + renamed: README.md -> README +---- However, this is equivalent to running something like this: - $ mv README.txt README - $ git rm README.txt - $ git add README +[source,shell] +---- +$ mv README.md README +$ git rm README.md +$ git add README +---- -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. +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. === Viewing the Commit History 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. -These examples use a very simple project called simplegit that I often use for demonstrations. To get the project, run +These examples use a very simple project called ``simplegit''. To get the project, run - git clone git://github.com/schacon/simplegit-progit.git +[source,shell] +---- +git clone https://github.com/schacon/simplegit-progit.git +---- When you run `git log` in this project, you should get output that looks something like this: - $ git log - commit ca82a6dff817ec66f44342007202690a93763949 - Author: Scott Chacon - Date: Mon Mar 17 21:52:11 2008 -0700 +[source,shell] +---- +$ git log +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + changed the version number - commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 - Author: Scott Chacon - Date: Sat Mar 15 16:40:33 2008 -0700 +commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 +Author: Scott Chacon +Date: Sat Mar 15 16:40:33 2008 -0700 - removed unnecessary test code + removed unnecessary test code - commit a11bef06a3f659402fe7563abf99ad00de2209e6 - Author: Scott Chacon - Date: Sat Mar 15 10:31:28 2008 -0700 +commit a11bef06a3f659402fe7563abf99ad00de2209e6 +Author: Scott Chacon +Date: Sat Mar 15 10:31:28 2008 -0700 - first commit + first commit +---- -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. +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. -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. +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 popular. 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: - $ git log -p -2 - commit ca82a6dff817ec66f44342007202690a93763949 - Author: Scott Chacon - Date: Mon Mar 17 21:52:11 2008 -0700 - - changed the version number - - diff --git a/Rakefile b/Rakefile - index a874b73..8f94139 100644 - --- a/Rakefile - +++ b/Rakefile - @@ -5,7 +5,7 @@ require 'rake/gempackagetask' - spec = Gem::Specification.new do |s| - - s.version = "0.1.0" - + s.version = "0.1.1" - s.author = "Scott Chacon" - - commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 - Author: Scott Chacon - Date: Sat Mar 15 16:40:33 2008 -0700 - - removed unnecessary test code - - diff --git a/lib/simplegit.rb b/lib/simplegit.rb - index a0a60ae..47c6340 100644 - --- a/lib/simplegit.rb - +++ b/lib/simplegit.rb - @@ -18,8 +18,3 @@ class SimpleGit - end - - end - - - -if $0 == __FILE__ - - git = SimpleGit.new - - puts git.show - -end - \ No newline at end of file +[source,shell] +---- +$ git log -p -2 +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 + + changed the verison number + +diff --git a/Rakefile b/Rakefile +index a874b73..8f94139 100644 +--- a/Rakefile ++++ b/Rakefile +@@ -5,7 +5,7 @@ require 'rake/gempackagetask' + spec = Gem::Specification.new do |s| + s.platform = Gem::Platform::RUBY + s.name = "simplegit" +- s.version = "0.1.0" ++ s.version = "0.1.1" + s.author = "Scott Chacon" + s.email = "schacon@gee-mail.com" + s.summary = "A simple gem for using Git in Ruby code." + +commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 +Author: Scott Chacon +Date: Sat Mar 15 16:40:33 2008 -0700 + + removed unnecessary test code + +diff --git a/lib/simplegit.rb b/lib/simplegit.rb +index a0a60ae..47c6340 100644 +--- a/lib/simplegit.rb ++++ b/lib/simplegit.rb +@@ -18,8 +18,3 @@ class SimpleGit + end + + end +- +-if $0 == __FILE__ +- git = SimpleGit.new +- puts git.show +-end +\ No newline at end of file +---- 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. 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: - $ git log --stat - commit ca82a6dff817ec66f44342007202690a93763949 - Author: Scott Chacon - Date: Mon Mar 17 21:52:11 2008 -0700 +[source,shell] +---- +$ git log --stat +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + changed the verison number - Rakefile | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + Rakefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) - commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 - Author: Scott Chacon - Date: Sat Mar 15 16:40:33 2008 -0700 +commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 +Author: Scott Chacon +Date: Sat Mar 15 16:40:33 2008 -0700 - removed unnecessary test code + removed unnecessary test code - lib/simplegit.rb | 5 ----- - 1 files changed, 0 insertions(+), 5 deletions(-) + lib/simplegit.rb | 5 ----- + 1 file changed, 5 deletions(-) - commit a11bef06a3f659402fe7563abf99ad00de2209e6 - Author: Scott Chacon - Date: Sat Mar 15 10:31:28 2008 -0700 +commit a11bef06a3f659402fe7563abf99ad00de2209e6 +Author: Scott Chacon +Date: Sat Mar 15 10:31:28 2008 -0700 - first commit + first commit - README | 6 ++++++ - Rakefile | 23 +++++++++++++++++++++++ - lib/simplegit.rb | 25 +++++++++++++++++++++++++ - 3 files changed, 54 insertions(+), 0 deletions(-) + README | 6 ++++++ + Rakefile | 23 +++++++++++++++++++++++ + lib/simplegit.rb | 25 +++++++++++++++++++++++++ + 3 files changed, 54 insertions(+) +---- 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. 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: - $ git log --pretty=oneline - ca82a6dff817ec66f44342007202690a93763949 changed the version number - 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 removed unnecessary test code - a11bef06a3f659402fe7563abf99ad00de2209e6 first commit - -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: - - $ git log --pretty=format:"%h - %an, %ar : %s" - ca82a6d - Scott Chacon, 11 months ago : changed the version number - 085bb3b - Scott Chacon, 11 months ago : removed unnecessary test code - a11bef0 - Scott Chacon, 11 months ago : first commit - -Table 2-1 lists some of the more useful options that format takes. - - Option Description of Output - %H Commit hash - %h Abbreviated commit hash - %T Tree hash - %t Abbreviated tree hash - %P Parent hashes - %p Abbreviated parent hashes - %an Author name - %ae Author e-mail - %ad Author date (format respects the –date= option) - %ar Author date, relative - %cn Committer name - %ce Committer email - %cd Committer date - %cr Committer date, relative - %s Subject - -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 <<_distributed_git>>. +[source,shell] +---- +$ git log --pretty=oneline +ca82a6dff817ec66f44342007202690a93763949 changed the verison number +085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 removed unnecessary test code +a11bef06a3f659402fe7563abf99ad00de2209e6 first commit +---- + +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: + +[source,shell] +---- +$ git log --pretty=format:"%h - %an, %ar : %s" +ca82a6d - Scott Chacon, 11 months ago : changed the version number +085bb3b - Scott Chacon, 11 months ago : removed unnecessary test code +a11bef0 - Scott Chacon, 11 months ago : first commit +---- + +<> lists some of the more useful options that format takes. + +[[pretty_format]] +.Useful options for `git log --pretty=format` +[cols="1,4",options="header"] +|================================ +| Option | Description of Output +| `%H` | Commit hash +| `%h` | Abbreviated commit hash +| `%T` | Tree hash +| `%t` | Abbreviated tree hash +| `%P` | Parent hashes +| `%p` | Abbreviated parent hashes +| `%an` | Author name +| `%ae` | Author e-mail +| `%ad` | Author date (format respects the –date= option) +| `%ar` | Author date, relative +| `%cn` | Committer name +| `%ce` | Committer email +| `%cd` | Committer date +| `%cr` | Committer date, relative +| `%s` | Subject +|================================ + +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 <<_distributed_git>>. 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: - $ git log --pretty=format:"%h %s" --graph - * 2d3acf9 ignore errors from SIGCHLD on trap - * 5e3ee11 Merge branch 'master' of git://github.com/dustin/grit - |\ - | * 420eac9 Added a method for getting the current branch. - * | 30e367c timeout code and tests - * | 5a09431 add timeout protection to grit - * | e1193f8 support for heads with slashes in them - |/ - * d6016bc require time for xmlschema - * 11d191e Merge branch 'defunkt' into local - -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. - - Option Description - -p Show the patch introduced with each commit. - --stat Show statistics for files modified in each commit. - --shortstat Display only the changed/insertions/deletions line from the --stat command. - --name-only Show the list of files modified after the commit information. - --name-status Show the list of files affected with added/modified/deleted information as well. - --abbrev-commit Show only the first few characters of the SHA-1 checksum instead of all 40. - --relative-date Display the date in a relative format (for example, ``2 weeks ago'') instead of using the full date format. - --graph Display an ASCII graph of the branch and merge history beside the log output. - --pretty Show commits in an alternate format. Options include oneline, short, full, fuller, and format (where you specify your own format). +[source,shell] +---- +$ git log --pretty=format:"%h %s" --graph +* 2d3acf9 ignore errors from SIGCHLD on trap +* 5e3ee11 Merge branch 'master' of git://github.com/dustin/grit +|\ +| * 420eac9 Added a method for getting the current branch. +* | 30e367c timeout code and tests +* | 5a09431 add timeout protection to grit +* | e1193f8 support for heads with slashes in them +|/ +* d6016bc require time for xmlschema +* 11d191e Merge branch 'defunkt' into local +---- + +Those are only some simple output-formatting options to `git log` – there are many more. <> lists the options we’ve covered so far, as well as some other common formatting options that may be useful, along with how they change the output of the log command. + +[[log_options]] +.Common options to `git log` +[cols="1,4",options="header"] +|================================ +| Option | Description +| `-p` | Show the patch introduced with each commit. +| `--stat` | Show statistics for files modified in each commit. +| `--shortstat` | Display only the changed/insertions/deletions line from the --stat command. +| `--name-only` | Show the list of files modified after the commit information. +| `--name-status` | Show the list of files affected with added/modified/deleted information as well. +| `--abbrev-commit` | Show only the first few characters of the SHA-1 checksum instead of all 40. +| `--relative-date` | Display the date in a relative format (for example, ``2 weeks ago'') instead of using the full date format. +| `--graph` | Display an ASCII graph of the branch and merge history beside the log output. +| `--pretty` | Show commits in an alternate format. Options include oneline, short, full, fuller, and format (where you specify your own format). +|================================ ==== Limiting Log Output -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 `-`, 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. +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 `-`, 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. 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: - $ git log --since=2.weeks +[source,shell] +---- +$ git log --since=2.weeks +---- -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''. +This command works with lots of formats – you can specify a specific date like `"2008-01-15"`, or a relative date such as `"2 years 1 day 3 minutes ago"`. 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.) 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. -In Table 2-3 we’ll list these and a few other common options for your reference. +In <> we’ll list these and a few other common options for your reference. - Option Description - -(n) Show only the last n commits - --since, --after Limit the commits to those made after the specified date. - --until, --before Limit the commits to those made before the specified date. - --author Only show commits in which the author entry matches the specified string. - --committer Only show commits in which the committer entry matches the specified string. +[[limit_options]] +.Options to limit the output of `git log` +[cols="2,4",options="header"] +|================================ +| Option | Description +| `-(n)` | Show only the last n commits +| `--since`, `--after` | Limit the commits to those made after the specified date. +| `--until`, `--before` | Limit the commits to those made before the specified date. +| `--author` | Only show commits in which the author entry matches the specified string. +| `--committer` | Only show commits in which the committer entry matches the specified string. +|================================ 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: - $ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \ - --before="2008-11-01" --no-merges -- t/ - 5610e3b - Fix testcase failure when extended attribute - acd3b9e - Enhance hold_lock_file_for_{update,append}() - f563754 - demonstrate breakage of detached checkout wi - d1a43f2 - reset --hard/read-tree --reset -u: remove un - 51a94af - Fix "checkout --track -b newbranch" on detac - b0ad11e - pull: allow "git pull origin $something:$cur +[source,shell] +---- +$ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \ + --before="2008-11-01" --no-merges -- t/ +5610e3b - Fix testcase failure when extended attributes are in use +acd3b9e - Enhance hold_lock_file_for_{update,append}() API +f563754 - demonstrate breakage of detached checkout with symbolic link HEAD +d1a43f2 - reset --hard/read-tree --reset -u: remove unmerged new paths +51a94af - Fix "checkout --track -b newbranch" on detached HEAD +b0ad11e - pull: allow "git pull origin $something:$current_branch" into an unborn branch +---- -Of the nearly 20,000 commits in the Git source code history, this command shows the 6 that match those criteria. +Of the nearly 40,000 commits in the Git source code history, this command shows the 6 that match those criteria. ==== Using a GUI to Visualize History @@ -689,6 +775,8 @@ At any stage, you may want to undo something. Here, we’ll review a few basic t ==== Reset Demystified +**TODO** + ===== The Three Trees ===== The Workflow @@ -707,7 +795,10 @@ At any stage, you may want to undo something. Here, we’ll review a few basic t 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: - $ git commit --amend +[source,shell] +---- +$ git commit --amend +---- This command takes your staging area and uses it for the commit. If you’ve made no changes since your last commit (for instance, you run this command immediately after your previous commit), then your snapshot will look exactly the same and all you’ll change is your commit message. @@ -715,74 +806,89 @@ The same commit-message editor fires up, but it already contains the message of 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: - $ git commit -m 'initial commit' - $ git add forgotten_file - $ git commit --amend +[source,shell] +---- +$ git commit -m 'initial commit' +$ git add forgotten_file +$ git commit --amend +---- -All three of these commands end up with a single commit — the second commit replaces the results of the first. +You end up with a single commit – the second commit replaces the results of the first. ==== Unstaging a Staged File 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: - $ git add . - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # modified: README.txt - # modified: benchmarks.rb - # - -Right below the ``Changes to be committed'' text, it says use `git reset HEAD ...` to unstage. So, let’s use that advice to unstage the benchmarks.rb file: - - $ git reset HEAD benchmarks.rb - benchmarks.rb: locally modified - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # modified: README.txt - # - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # (use "git checkout -- ..." to discard changes in working directory) - # - # modified: benchmarks.rb - # - -The command is a bit strange, but it works. The benchmarks.rb file is modified but once again unstaged. +[source,shell] +---- +$ git add . +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + renamed: README.md -> README + modified: benchmarks.rb +---- + +Right below the ``Changes to be committed'' text, it says use `git reset HEAD ...` to unstage. So, let’s use that advice to unstage the `benchmarks.rb` file: + +[source,shell] +---- +$ git reset HEAD benchmarks.rb +Unstaged changes after reset: +M benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + renamed: README.md -> README + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + + modified: benchmarks.rb +---- + +The command is a bit strange, but it works. The `benchmarks.rb` file is modified but once again unstaged. ==== Unmodifying a Modified File -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: +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: - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # (use "git checkout -- ..." to discard changes in working directory) - # - # modified: benchmarks.rb - # +[source,shell] +---- +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) -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: + modified: benchmarks.rb +---- - $ git checkout -- benchmarks.rb - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # modified: README.txt - # +It tells you pretty explicitly how to discard the changes you’ve made. Let’s do what it says: -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. +[source,shell] +---- +$ git checkout -- benchmarks.rb +$ git status +On branch master +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + renamed: README.md -> README + +---- -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 <<_git_internals>> for data recovery). However, anything you lose that was never committed is likely never to be seen again. +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. + +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 <> for data recovery). However, anything you lose that was never committed is likely never to be seen again. ==== Undoing All Changes +**TODO** + === Working with Remotes 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. @@ -790,33 +896,42 @@ Managing remote repositories includes knowing how to add remote repositories, re ==== Showing Your Remotes -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: +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: - $ git clone git://github.com/schacon/ticgit.git - Initialized empty Git repository in /private/tmp/ticgit/.git/ - remote: Counting objects: 595, done. - remote: Compressing objects: 100% (269/269), done. - remote: Total 595 (delta 255), reused 589 (delta 253) - Receiving objects: 100% (595/595), 73.31 KiB | 1 KiB/s, done. - Resolving deltas: 100% (255/255), done. - $ cd ticgit - $ git remote - origin +[source,shell] +---- +$ git clone git://github.com/schacon/ticgit.git +Cloning into 'ticgit'... +remote: Reusing existing pack: 1857, done. +remote: Total 1857 (delta 0), reused 0 (delta 0) +Receiving objects: 100% (1857/1857), 374.35 KiB | 268.00 KiB/s, done. +Resolving deltas: 100% (772/772), done. +Checking connectivity... done. +$ cd ticgit +$ git remote +origin +---- You can also specify `-v`, which shows you the URL that Git has stored for the shortname to be expanded to: - $ git remote -v - origin git://github.com/schacon/ticgit.git +[source,shell] +---- +$ git remote -v +origin git://github.com/schacon/ticgit.git +---- If you have more than one remote, the command lists them all. For example, my Grit repository looks something like this. - $ cd grit - $ git remote -v - bakkdoor git://github.com/bakkdoor/grit.git - cho45 git://github.com/cho45/grit.git - defunkt git://github.com/defunkt/grit.git - koke git://github.com/koke/grit.git - origin git@github.com:mojombo/grit.git +[source,shell] +---- +$ cd grit +$ git remote -v +bakkdoor git://github.com/bakkdoor/grit.git +cho45 git://github.com/cho45/grit.git +defunkt git://github.com/defunkt/grit.git +koke git://github.com/koke/grit.git +origin git@github.com:mojombo/grit.git +---- 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 <<_git_on_the_server>>). @@ -824,43 +939,56 @@ This means we can pull contributions from any of these users pretty easily. But 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]`: - $ git remote - origin - $ git remote add pb git://github.com/paulboone/ticgit.git - $ git remote -v - origin git://github.com/schacon/ticgit.git - pb git://github.com/paulboone/ticgit.git - -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: +[source,shell] +---- +$ git remote +origin +$ git remote add pb git://github.com/paulboone/ticgit.git +$ git remote -v +origin git://github.com/schacon/ticgit.git (fetch) +origin git://github.com/schacon/ticgit.git (push) +pb git://github.com/paulboone/ticgit.git (fetch) +pb git://github.com/paulboone/ticgit.git (push) +---- - $ git fetch pb - remote: Counting objects: 58, done. - remote: Compressing objects: 100% (41/41), done. - remote: Total 44 (delta 24), reused 1 (delta 0) - Unpacking objects: 100% (44/44), done. - From git://github.com/paulboone/ticgit - * [new branch] master -> pb/master - * [new branch] ticgit -> pb/ticgit +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`: -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. +[source,shell] +---- +$ git fetch pb +remote: Counting objects: 43, done. +remote: Compressing objects: 100% (36/36), done. +remote: Total 43 (delta 10), reused 31 (delta 5) +Unpacking objects: 100% (43/43), done. +From git://github.com/paulboone/ticgit + * [new branch] master -> pb/master + * [new branch] ticgit -> pb/ticgit +---- +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. ==== Fetching and Pulling from Your Remotes As you just saw, to get data from your remote projects, you can run: - $ git fetch [remote-name] +[source,shell] +---- +$ git fetch [remote-name] +---- 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 <<_git_branching>>.) -If you clone 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. +If you clone 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. -If you have a branch set up to track a remote branch (see the next section and <<_git_branching>> 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. +If you have a branch set up to track a remote branch (see the next section and <<_git_branching>> 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 (or whatever the default branch is called) on the server you cloned from. 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. ==== Pushing to Your Remotes 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: - $ git push origin master +[source,shell] +---- +$ git push origin master +---- 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 <<_git_branching>> for more detailed information on how to push to remote servers. @@ -868,40 +996,50 @@ This command works only if you cloned from a server to which you have write acce 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: - $ git remote show origin - * remote origin - URL: git://github.com/schacon/ticgit.git - Remote branch merged with 'git pull' while on branch master - master - Tracked remote branches - master - ticgit +[source,shell] +---- +$ git remote show origin +* remote origin + Fetch URL: git://github.com/schacon/ticgit.git + Push URL: git://github.com/schacon/ticgit.git + HEAD branch: master + Remote branches: + master tracked + ticgit tracked + Local branch configured for 'git pull': + master merges with remote master + Local ref configured for 'git push': + master pushes to master (up to date) +---- 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. 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`: - $ git remote show origin - * remote origin - URL: git@github.com:defunkt/github.git - Remote branch merged with 'git pull' while on branch issues - issues - Remote branch merged with 'git pull' while on branch master - master - New remote branches (next fetch will store in remotes/origin) - caching - Stale tracking branches (use 'git remote prune') - libwalker - walker2 - Tracked remote branches - acl - apiv2 - dashboard2 - issues - master - postgres - Local branch pushed with 'git push' - master:master +[source,shell] +---- +$ git remote show origin +* remote origin + URL: git@github.com:defunkt/github.git + Remote branch merged with 'git pull' while on branch issues + issues + Remote branch merged with 'git pull' while on branch master + master + New remote branches (next fetch will store in remotes/origin) + caching + Stale tracking branches (use 'git remote prune') + libwalker + walker2 + Tracked remote branches + acl + apiv2 + dashboard2 + issues + master + postgres + Local branch pushed with 'git push' + master:master +---- 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`. @@ -909,71 +1047,95 @@ This command shows which branch is automatically pushed when you run `git push` 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`: - $ git remote rename pb paul - $ git remote - origin - paul +[source,shell] +---- +$ git remote rename pb paul +$ git remote +origin +paul +---- 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`. -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`: +If you want to remove a remote 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`: - $ git remote rm paul - $ git remote - origin +[source,shell] +---- +$ git remote rm paul +$ git remote +origin +---- === Tagging -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. +Like most VCSs, Git has the ability to tag specific points in history as being important. Typically 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. ==== Listing Your Tags Listing the available tags in Git is straightforward. Just type `git tag`: - $ git tag - v0.1 - v1.3 +[source,shell] +---- +$ git tag +v0.1 +v1.3 +---- This command lists the tags in alphabetical order; the order in which they appear has no real importance. -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: +You can also search for tags with a particular pattern. The Git source repo, for instance, contains more than 500 tags. If you’re only interested in looking at the 1.8.5 series, you can run this: - $ git tag -l 'v1.4.2.*' - v1.4.2.1 - v1.4.2.2 - v1.4.2.3 - v1.4.2.4 +[source,shell] +---- +$ git tag -l 'v1.8.5*' +v1.8.5 +v1.8.5-rc0 +v1.8.5-rc1 +v1.8.5-rc2 +v1.8.5-rc3 +v1.8.5.1 +v1.8.5.2 +v1.8.5.3 +v1.8.5.4 +v1.8.5.5 +---- ==== Creating Tags -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. +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. ==== Annotated Tags Creating an annotated tag in Git is simple. The easiest way is to specify `-a` when you run the `tag` command: - $ git tag -a v1.4 -m 'my version 1.4' - $ git tag - v0.1 - v1.3 - v1.4 +[source,shell] +---- +$ git tag -a v1.4 -m 'my version 1.4' +$ git tag +v0.1 +v1.3 +v1.4 +---- 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. You can see the tag data along with the commit that was tagged by using the `git show` command: - $ git show v1.4 - tag v1.4 - Tagger: Scott Chacon - Date: Mon Feb 9 14:45:11 2009 -0800 +[source,shell] +---- +$ git show v1.4 +tag v1.4 +Tagger: Ben Straub +Date: Sat May 3 20:19:12 2014 -0700 + +my version 1.4 - my version 1.4 - commit 15027957951b64cf874c3557a0f3547bd83b3ff6 - Merge: 4a447f7... a6b4c97... - Author: Scott Chacon - Date: Sun Feb 8 19:02:46 2009 -0800 +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 - Merge branch 'experiment' + changed the verison number +---- That shows the tagger information, the date the commit was tagged, and the annotation message before showing the commit information. @@ -981,149 +1143,184 @@ That shows the tagger information, the date the commit was tagged, and the annot 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`: - $ git tag -s v1.5 -m 'my signed 1.5 tag' - You need a passphrase to unlock the secret key for - user: "Scott Chacon " - 1024-bit DSA key, ID F721C45A, created 2009-02-09 - -If you run `git show` on that tag, you can see your GPG signature attached to it: +[source,shell] +---- +$ git tag -s v1.5 -m 'my signed 1.5 tag' - $ git show v1.5 - tag v1.5 - Tagger: Scott Chacon - Date: Mon Feb 9 15:22:20 2009 -0800 +You need a passphrase to unlock the secret key for +user: "Ben Straub " +2048-bit RSA key, ID 800430EB, created 2014-05-04 - my signed 1.5 tag - -----BEGIN PGP SIGNATURE----- - Version: GnuPG v1.4.8 (Darwin) +---- - iEYEABECAAYFAkmQurIACgkQON3DxfchxFr5cACeIMN+ZxLKggJQf0QYiQBwgySN - Ki0An2JeAVUCAiJ7Ox6ZEtK+NvZAj82/ - =WryJ - -----END PGP SIGNATURE----- - commit 15027957951b64cf874c3557a0f3547bd83b3ff6 - Merge: 4a447f7... a6b4c97... - Author: Scott Chacon - Date: Sun Feb 8 19:02:46 2009 -0800 +If you run `git show` on that tag, you can see your GPG signature attached to it: - Merge branch 'experiment' +[source,shell] +-------- +$ git show v1.5 +tag v1.5 +Tagger: Ben Straub +Date: Sat May 3 20:29:41 2014 -0700 + +my signed 1.5 tag +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1 + +iQEcBAABAgAGBQJTZbQlAAoJEF0+sviABDDrZbQH/09PfE51KPVPlanr6q1v4/Ut +LQxfojUWiLQdg2ESJItkcuweYg+kc3HCyFejeDIBw9dpXt00rY26p05qrpnG+85b +hM1/PswpPLuBSr+oCIDj5GMC2r2iEKsfv2fJbNW8iWAXVLoWZRF8B0MfqX/YTMbm +ecorc4iXzQu7tupRihslbNkfvfciMnSDeSvzCpWAHl7h8Wj6hhqePmLm9lAYqnKp +8S5B/1SSQuEAjRZgI4IexpZoeKGVDptPHxLLS38fozsyi0QyDyzEgJxcJQVMXxVi +RUysgqjcpT8+iQM1PblGfHR4XAhuOqN5Fx06PSaFZhqvWFezJ28/CLyX5q+oIVk= +=EFTF +-----END PGP SIGNATURE----- + +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 + + changed the verison number +-------- A bit later, you’ll learn how to verify signed tags. ==== Lightweight Tags -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: +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: - $ git tag v1.4-lw - $ git tag - v0.1 - v1.3 - v1.4 - v1.4-lw - v1.5 +[source,shell] +---- +$ git tag v1.4-lw +$ git tag +v0.1 +v1.3 +v1.4 +v1.4-lw +v1.5 +---- This time, if you run `git show` on the tag, you don’t see the extra tag information. The command just shows the commit: - $ git show v1.4-lw - commit 15027957951b64cf874c3557a0f3547bd83b3ff6 - Merge: 4a447f7... a6b4c97... - Author: Scott Chacon - Date: Sun Feb 8 19:02:46 2009 -0800 +[source,shell] +---- +$ git show v1.4-lw +commit ca82a6dff817ec66f44342007202690a93763949 +Author: Scott Chacon +Date: Mon Mar 17 21:52:11 2008 -0700 - Merge branch 'experiment' + changed the verison number +---- ==== Verifying Tags 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: - $ git tag -v v1.4.2.1 - object 883653babd8ee7ea23e6a5c392bb739348b1eb61 - type commit - tag v1.4.2.1 - tagger Junio C Hamano 1158138501 -0700 - - GIT 1.4.2.1 - - Minor fixes since 1.4.2, including git-mv and git-http with alternates. - gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A - gpg: Good signature from "Junio C Hamano " - gpg: aka "[jpeg image of size 1513]" - Primary key fingerprint: 3565 2A26 2040 E066 C9A7 4A7D C0C6 D9A4 F311 9B9A +[source,shell] +---- +$ git tag -v v1.4.2.1 +object 883653babd8ee7ea23e6a5c392bb739348b1eb61 +type commit +tag v1.4.2.1 +tagger Junio C Hamano 1158138501 -0700 + +GIT 1.4.2.1 + +Minor fixes since 1.4.2, including git-mv and git-http with alternates. +gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A +gpg: Good signature from "Junio C Hamano " +gpg: aka "[jpeg image of size 1513]" +Primary key fingerprint: 3565 2A26 2040 E066 C9A7 4A7D C0C6 D9A4 F311 9B9A +---- If you don’t have the signer’s public key, you get something like this instead: - gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A - gpg: Can't check signature: public key not found - error: could not verify the tag 'v1.4.2.1' +[source,shell] +---- +gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A +gpg: Can't check signature: public key not found +error: could not verify the tag 'v1.4.2.1' +---- ==== Tagging Later You can also tag commits after you’ve moved past them. Suppose your commit history looks like this: - $ git log --pretty=oneline - 15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment' - a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support - 0d52aaab4479697da7686c15f77a3d64d9165190 one more thing - 6d52a271eda8725415634dd79daabbc4d9b6008e Merge branch 'experiment' - 0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc added a commit function - 4682c3261057305bdd616e23b64b0857d832627b added a todo file - 166ae0c4d3f420721acbb115cc33848dfcc2121a started write support - 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile - 964f16d36dfccde844893cac5b347e7b3d44abbc commit the todo - 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme +[source,shell] +---- +$ git log --pretty=oneline +15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment' +a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support +0d52aaab4479697da7686c15f77a3d64d9165190 one more thing +6d52a271eda8725415634dd79daabbc4d9b6008e Merge branch 'experiment' +0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc added a commit function +4682c3261057305bdd616e23b64b0857d832627b added a todo file +166ae0c4d3f420721acbb115cc33848dfcc2121a started write support +9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile +964f16d36dfccde844893cac5b347e7b3d44abbc commit the todo +8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme +---- 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: - $ git tag -a v1.2 9fceb02 +[source,shell] +---- +$ git tag -a v1.2 9fceb02 +---- You can see that you’ve tagged the commit: - $ git tag - v0.1 - v1.2 - v1.3 - v1.4 - v1.4-lw - v1.5 - - $ git show v1.2 - tag v1.2 - Tagger: Scott Chacon - Date: Mon Feb 9 15:32:16 2009 -0800 - - version 1.2 - commit 9fceb02d0ae598e95dc970b74767f19372d61af8 - Author: Magnus Chacon - Date: Sun Apr 27 20:43:35 2008 -0700 - - updated rakefile - ... +[source,shell] +---- +$ git tag +v0.1 +v1.2 +v1.3 +v1.4 +v1.4-lw +v1.5 + +$ git show v1.2 +tag v1.2 +Tagger: Scott Chacon +Date: Mon Feb 9 15:32:16 2009 -0800 + +version 1.2 +commit 9fceb02d0ae598e95dc970b74767f19372d61af8 +Author: Magnus Chacon +Date: Sun Apr 27 20:43:35 2008 -0700 + + updated rakefile +... +---- ==== Sharing Tags -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]`. +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]`. - $ git push origin v1.5 - Counting objects: 50, done. - Compressing objects: 100% (38/38), done. - Writing objects: 100% (44/44), 4.56 KiB, done. - Total 44 (delta 18), reused 8 (delta 1) - To git@github.com:schacon/simplegit.git - * [new tag] v1.5 -> v1.5 +[source,shell] +---- +$ git push origin v1.5 +Counting objects: 14, done. +Delta compression using up to 8 threads. +Compressing objects: 100% (12/12), done. +Writing objects: 100% (14/14), 2.05 KiB | 0 bytes/s, done. +Total 14 (delta 3), reused 0 (delta 0) +To git@github.com:schacon/simplegit.git + * [new tag] v1.5 -> v1.5 +---- 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. - $ git push origin --tags - Counting objects: 50, done. - Compressing objects: 100% (38/38), done. - Writing objects: 100% (44/44), 4.56 KiB, done. - Total 44 (delta 18), reused 8 (delta 1) - To git@github.com:schacon/simplegit.git - * [new tag] v0.1 -> v0.1 - * [new tag] v1.2 -> v1.2 - * [new tag] v1.4 -> v1.4 - * [new tag] v1.4-lw -> v1.4-lw - * [new tag] v1.5 -> v1.5 +[source,shell] +---- +$ git push origin --tags +Counting objects: 1, done. +Writing objects: 100% (1/1), 160 bytes | 0 bytes/s, done. +Total 1 (delta 0), reused 0 (delta 0) +To git@github.com:schacon/simplegit.git + * [new tag] v1.4 -> v1.4 + * [new tag] v1.4-lw -> v1.4-lw +---- Now, when someone else clones or pulls from your repository, they will get all your tags as well. @@ -1131,69 +1328,63 @@ Now, when someone else clones or pulls from your repository, they will get all y 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. -==== Auto-Completion - -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: - - source ~/.git-completion.bash - -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. - -If you’re using Windows with Git Bash, which is the default when installing Git on Windows with msysGit, auto-completion should be preconfigured. - -Press the Tab key when you’re writing a Git command, and it should return a set of suggestions for you to pick from: - - $ git co - commit config - -In this case, typing git co and then pressing the Tab key twice suggests commit and config. Adding `m` completes `git commit` automatically. - -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: - - $ git log --s - --shortstat --since= --src-prefix= --stat --summary - -That’s a pretty nice trick and may save you some time and documentation reading. - ==== Git Aliases 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: - $ git config --global alias.co checkout - $ git config --global alias.br branch - $ git config --global alias.ci commit - $ git config --global alias.st status +[source,shell] +---- +$ git config --global alias.co checkout +$ git config --global alias.br branch +$ git config --global alias.ci commit +$ git config --global alias.st status +---- -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. +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; don’t hesitate to create new aliases. 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: - $ git config --global alias.unstage 'reset HEAD --' +[source,shell] +---- +$ git config --global alias.unstage 'reset HEAD --' +---- This makes the following two commands equivalent: - $ git unstage fileA - $ git reset HEAD fileA +[source,shell] +---- +$ git unstage fileA +$ git reset HEAD fileA +---- This seems a bit clearer. It’s also common to add a `last` command, like this: - $ git config --global alias.last 'log -1 HEAD' +[source,shell] +---- +$ git config --global alias.last 'log -1 HEAD' +---- This way, you can see the last commit easily: - $ git last - commit 66938dae3329c7aebe598c2246a8e6af90d04646 - Author: Josh Goebel - Date: Tue Aug 26 19:48:51 2008 +0800 +[source,shell] +---- +$ git last +commit 66938dae3329c7aebe598c2246a8e6af90d04646 +Author: Josh Goebel +Date: Tue Aug 26 19:48:51 2008 +0800 - test for current head + test for current head - Signed-off-by: Scott Chacon + Signed-off-by: Scott Chacon +---- 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`: - $ git config --global alias.visual "!gitk" +[source,shell] +---- +$ git config --global alias.visual "!gitk" +---- === Summary -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. +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. diff --git a/en/book/11-git-internals/chapter11.asc b/en/book/11-git-internals/chapter11.asc index 5f71be4f4..801cc2ae6 100644 --- a/en/book/11-git-internals/chapter11.asc +++ b/en/book/11-git-internals/chapter11.asc @@ -799,6 +799,7 @@ If you update a reference, Git doesn’t edit this file but instead writes a new Notice the last line of the file, which begins with a `^`. This means the tag directly above is an annotated tag and that line is the commit that the annotated tag points to. +[[data_recovery]] ==== Data Recovery At some point in your Git journey, you may accidentally lose a commit. Generally, this happens because you force-delete a branch that had work on it, and it turns out you wanted the branch after all; or you hard-reset a branch, thus abandoning commits that you wanted something from. Assuming this happens, how can you get your commits back? From 7ff5111c09a741eabc460350ff62505c1b67a10d Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Sun, 4 May 2014 09:00:16 -0700 Subject: [PATCH 3/4] Use https for GitHub urls --- en/book/02-git-basics/chapter2.asc | 34 +++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/en/book/02-git-basics/chapter2.asc b/en/book/02-git-basics/chapter2.asc index 4b9cefd54..249419fd3 100644 --- a/en/book/02-git-basics/chapter2.asc +++ b/en/book/02-git-basics/chapter2.asc @@ -37,14 +37,14 @@ You clone a repository with `git clone [url]`. For example, if you want to clone [source,shell] ---- -$ git clone git://github.com/schacon/grit.git +$ git clone https://github.com/schacon/grit.git ---- That creates a directory named ``grit'', initializes a `.git` directory inside it, pulls down all the data for that repository, and checks out a working copy of the latest version. If you go into the new `grit` directory, you’ll see the project files in there, ready to be worked on or used. If you want to clone the repository into a directory named something other than grit, you can specify that as the next command-line option: [source,shell] ---- -$ git clone git://github.com/schacon/grit.git mygrit +$ git clone https://github.com/schacon/grit.git mygrit ---- That command does the same thing as the previous one, but the target directory is called `mygrit`. @@ -281,7 +281,7 @@ index 0000000..03902a1 @@ -0,0 +1,5 @@ +grit + by Tom Preston-Werner, Chris Wanstrath -+ http://github.com/mojombo/grit ++ https://github.com/mojombo/grit + +Grit is a Ruby library for extracting information from a Git repository ---- @@ -900,7 +900,7 @@ To see which remote servers you have configured, you can run the `git remote` co [source,shell] ---- -$ git clone git://github.com/schacon/ticgit.git +$ git clone https://github.com/schacon/ticgit.git Cloning into 'ticgit'... remote: Reusing existing pack: 1857, done. remote: Total 1857 (delta 0), reused 0 (delta 0) @@ -917,7 +917,7 @@ You can also specify `-v`, which shows you the URL that Git has stored for the s [source,shell] ---- $ git remote -v -origin git://github.com/schacon/ticgit.git +origin https://github.com/schacon/ticgit.git ---- If you have more than one remote, the command lists them all. For example, my Grit repository looks something like this. @@ -926,14 +926,14 @@ If you have more than one remote, the command lists them all. For example, my Gr ---- $ cd grit $ git remote -v -bakkdoor git://github.com/bakkdoor/grit.git -cho45 git://github.com/cho45/grit.git -defunkt git://github.com/defunkt/grit.git +bakkdoor https://github.com/bakkdoor/grit.git +cho45 https://github.com/cho45/grit.git +defunkt https://github.com/defunkt/grit.git koke git://github.com/koke/grit.git origin git@github.com:mojombo/grit.git ---- -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 <<_git_on_the_server>>). +This means we can pull contributions from any of these users pretty easily. Notice that these remotes use a variety of protocols; we’ll cover why more about this in <<_git_on_the_server>>. ==== Adding Remote Repositories @@ -943,12 +943,12 @@ I’ve mentioned and given some demonstrations of adding remote repositories in ---- $ git remote origin -$ git remote add pb git://github.com/paulboone/ticgit.git +$ git remote add pb https://github.com/paulboone/ticgit.git $ git remote -v -origin git://github.com/schacon/ticgit.git (fetch) -origin git://github.com/schacon/ticgit.git (push) -pb git://github.com/paulboone/ticgit.git (fetch) -pb git://github.com/paulboone/ticgit.git (push) +origin https://github.com/schacon/ticgit.git (fetch) +origin https://github.com/schacon/ticgit.git (push) +pb https://github.com/paulboone/ticgit.git (fetch) +pb https://github.com/paulboone/ticgit.git (push) ---- 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`: @@ -960,7 +960,7 @@ remote: Counting objects: 43, done. remote: Compressing objects: 100% (36/36), done. remote: Total 43 (delta 10), reused 31 (delta 5) Unpacking objects: 100% (43/43), done. -From git://github.com/paulboone/ticgit +From https://github.com/paulboone/ticgit * [new branch] master -> pb/master * [new branch] ticgit -> pb/ticgit ---- @@ -1000,8 +1000,8 @@ If you want to see more information about a particular remote, you can use the ` ---- $ git remote show origin * remote origin - Fetch URL: git://github.com/schacon/ticgit.git - Push URL: git://github.com/schacon/ticgit.git + Fetch URL: https://github.com/schacon/ticgit.git + Push URL: https://github.com/schacon/ticgit.git HEAD branch: master Remote branches: master tracked From 3c7e3e123fdd02fe757363542c103b705fe237b2 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Mon, 5 May 2014 20:10:42 -0700 Subject: [PATCH 4/4] Tip and trick --- en/book/02-git-basics/chapter2.asc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/en/book/02-git-basics/chapter2.asc b/en/book/02-git-basics/chapter2.asc index 249419fd3..57b479ff9 100644 --- a/en/book/02-git-basics/chapter2.asc +++ b/en/book/02-git-basics/chapter2.asc @@ -1324,11 +1324,9 @@ To git@github.com:schacon/simplegit.git Now, when someone else clones or pulls from your repository, they will get all your tags as well. -=== Tips and Tricks +=== Git Aliases -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. - -==== Git Aliases +Before we finish this chapter on basic Git, there's just one little tip that can make your Git experience simpler, easier, and more familiar: aliases. We won’t refer to them or assume you’ve used them later in the book, but you should probably know how to use them. 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: