diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..6660cdf8d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,131 @@ +name: Bug report +description: Create a report to help us improve +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: There's no existing/similar bug report. + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + + - type: checkboxes + attributes: + label: This report is about a single actionable bug. + description: Please create one issue per bug, split up your bug reports if needed. + options: + - label: I'm reporting a single actionable bug + required: true + + - type: checkboxes + attributes: + label: This report is about the ProGit book, version 2, English language. + description: Bug reports about translations or the first version of the book are not accepted. + options: + - label: This bug is not about a translation or old version + required: true + + - type: checkboxes + attributes: + label: Bug covers book website/pdf + description: This bug is about the book as found on the [website](https://www.git-scm.com/book/en/v2) or the PDF. + options: + - label: I confirm the bug is about the book as found on the website/pdf + validations: + required: false + + - type: checkboxes + attributes: + label: Problem is present in the Pro Git book on the website? + description: If you found an issue in the pdf/epub/mobi files, you've checked if the problem is also present in the Pro Git book on the [website](https://www.git-scm.com/book/en/v2). + options: + - label: This bug also affects the Pro Git book as published on the website. + validations: + required: false + + - type: dropdown + attributes: + label: Which version of the book is affected? + description: | + It's important for us to know if the problem is in the source or in the tooling that creates the pdf/epub/mobi files. + Therefore, please select which versions are affected. + options: + - "Source files" + - "Tooling" + - "Source files and tooling" + - "I don't know" + validations: + required: true + + - type: textarea + attributes: + label: "Describe the bug:" + description: A clear and concise description of what the bug is. + validations: + required: true + + - type: textarea + attributes: + label: "Steps to reproduce:" + description: Please write the steps needed to reproduce the bug here. + placeholder: Provide a ordered list of steps to reproduce. + value: | + 1. Go to '...' + 2. Click on '...' + 3. 'Scroll down to '...' + 4. See error + validations: + required: true + + - type: textarea + attributes: + label: "Expected behavior:" + description: A clear and concise description of what you expected to happen. + placeholder: I expected ... to happen. + validations: + required: true + + - type: textarea + attributes: + label: "Screenshots:" + description: If applicable, add screenshots to help explain your problem. + placeholder: "Tip: you can drag your screenshot into this field, or you can copy/paste." + validations: + required: false + + - type: textarea + attributes: + label: "Additional context:" + description: | + Add any other context about the problem here. + You can also put references to similar bugs here. + placeholder: "Example: this bug also affect issues #1 and #2." + validations: + required: false + + - type: input + attributes: + label: Device + description: Tell us what kind of device you're using to access the content. + placeholder: mobile device / desktop / laptop / e-book reader + validations: + required: false + + - type: input + attributes: + label: Operating system + description: If the problem is with the book or the published files, we need to know what operating system you run on your device. + placeholder: | + Windows 10 Home Edition + validations: + required: false + + - type: input + attributes: + label: Browser/application + version + description: What browser/application are you using? We also need the version number of the browser/application. + placeholder: | + Google Chrome 91.0.4472.164 + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..e8a3cd746 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,17 @@ +blank_issues_enabled: true +contact_links: + - name: Translation bug + url: https://github.com/progit/progit2/blob/main/TRANSLATING.md + about: Refer to this table to find out where to report translation bugs. + + - name: Report bugs for git-scm.com site + url: https://github.com/git/git-scm.com/issues/ + about: Please report problems with the git-scm.com site there. + + - name: Bug is about Git program itself + url: https://git-scm.com/community + about: Please report problems with the Git program there. + + - name: Bug is about Git for Windows + url: https://github.com/git-for-windows/git/issues + about: Please report problems with Git for Windows there. diff --git a/.github/ISSUE_TEMPLATE/enhancement_idea.yml b/.github/ISSUE_TEMPLATE/enhancement_idea.yml new file mode 100644 index 000000000..f0b19c19f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_idea.yml @@ -0,0 +1,34 @@ +name: Enhancement idea +description: Suggest an idea for the ProGit2 book or repository +labels: ["enhancement"] +body: + - type: textarea + attributes: + label: General overview of your idea. + description: Give a general overview of your idea. + validations: + required: true + + - type: textarea + attributes: + label: What problem will this solve? + description: Explain what problem you're trying to solve. + validations: + required: true + + - type: textarea + attributes: + label: Have you thought about other solutions? + description: Describe any alternative solutions to the problem. + validations: + required: false + + - type: dropdown + attributes: + label: Do you want to help with this enhancement idea? + options: + - "Yes" + - "Maybe" + - "No" + validations: + required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..6adcdcdbe --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + # Maintain dependencies for Ruby + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily" # Checks on Monday through Friday. + + # Maintain GitHub Action runners + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" # Checks on Monday through Friday. + + # Set default reviewer and labels + reviewers: + - "ben" + labels: + - "dependabot" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..fde92545c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,23 @@ + + + + + +- [ ] I provide my work under the [project license](https://github.com/progit/progit2/blob/main/LICENSE.asc). +- [ ] I grant such license of my work as is required for the purposes of future print editions to [Ben Straub](https://github.com/ben) and [Scott Chacon](https://github.com/schacon). + +## Changes + +- + +## Context + diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml new file mode 100644 index 000000000..f7fed92b5 --- /dev/null +++ b/.github/workflows/pr-build.yml @@ -0,0 +1,20 @@ +name: Pull Request Build + +on: + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.1 + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + + - name: Build book + run: bundle exec rake book:build diff --git a/.github/workflows/release-on-merge.yml b/.github/workflows/release-on-merge.yml new file mode 100644 index 000000000..c0ece1877 --- /dev/null +++ b/.github/workflows/release-on-merge.yml @@ -0,0 +1,38 @@ +name: Release on push to main + +on: + push: + branches: [ main ] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.1 + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + + - name: Build release assets + run: bundle exec rake book:build + + - name: Compute tag name + id: compute-tag + run: | + echo Computing next tag number + LASTPATCH=$(git describe --tags | cut -d- -f1 | cut -d. -f3) + PATCH=$(($LASTPATCH+1)) + echo "tagname=2.1.${PATCH}" >> $GITHUB_OUTPUT + + - name: Create release + uses: ncipollo/release-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ steps.compute-tag.outputs.tagname }} + commit: main + artifacts: './progit.epub,./progit.fb2.zip,./progit.mobi,./progit.pdf,./progit.html' diff --git a/.gitignore b/.gitignore index 424a30e52..aa9b3a0a0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ progit.html progit.pdf progit.pdfmarks progit.epub +progit.fb2.zip progit-kf8.epub progit.mobi contributors.txt \ No newline at end of file diff --git a/.tgitconfig b/.tgitconfig index 9a9773b33..a1a520376 100644 --- a/.tgitconfig +++ b/.tgitconfig @@ -1,6 +1,6 @@ [bugtraq] url = https://github.com/progit/progit2/issues/%BUGID% - logregex = "[Ii]ssues?:?(\\s*(,|and)?\\s*#?\\d+)+\n(\\d+)" + logregex = "(?:[Cc]lose[sd]?|[Ff]ix(?:e[sd])?|[Rr]esolve[sd]?):?\\s+(?:[Ii]ssues?\\s+#?|#)\\d+(?:(?:,|\\s+and)\\s+(?:[Ii]ssues?\\s+#?|#)\\d+)*\n(\\d+)" [tgit] icon = Pro.ico diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 17a10e01d..000000000 --- a/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -language: ruby -git: - depth: false -cache: bundler -before_install: -- bundle install -after_success: -- script/tag_on_master -script: bundle exec rake book:build -env: - secure: "O+YCTDgLfCYAJjjOv2sApDRV5NJe6pkhiYIkORFuf2flO8HE72fEtDRpSWh1vulnIH6AjRK2jH7C8qA3MVbUO8D0io+Ha+vnbMXIp1JPCptcJNEkJrW13VTR66SWOzsgLp3mCrIC+YdE2JoYWGcnDsRMQwdnrWnxBzSOd22ZKzU=" - -before_deploy: bundle install && bundle exec rake book:build -deploy: - provider: releases - file: - - progit.epub - - progit.mobi - - progit.pdf - skip_cleanup: true - on: - tags: true - api-key: - secure: "l3XdupX6dT48IoTieJXrd7Yx8+KhiR2QYrNrDzT6RKxA7UyXGSP/axsVerg7OjKfIHWZgDJRVzcc2RswE+Xjw9sOY8r2h2q9uCwj8G0EqtFbtgGK0La5LB0euh0tNJN8GLFj1OdSZGY7dWWK88GXeHCua2WSify0V79R4ClIM+s=" -branches: - only: - - master - - /^2\.1(\.\d+)+$/ - -notifications: - email: - on_success: never - on_failure: always diff --git a/A-git-in-other-environments.asc b/A-git-in-other-environments.asc index eacaa52fe..32d7f6168 100644 --- a/A-git-in-other-environments.asc +++ b/A-git-in-other-environments.asc @@ -11,8 +11,11 @@ include::book/A-git-in-other-environments/sections/guis.asc[] include::book/A-git-in-other-environments/sections/visualstudio.asc[] -include::book/A-git-in-other-environments/sections/eclipse.asc[] +include::book/A-git-in-other-environments/sections/visualstudiocode.asc[] +include::book/A-git-in-other-environments/sections/jetbrainsides.asc[] + +include::book/A-git-in-other-environments/sections/sublimetext.asc[] include::book/A-git-in-other-environments/sections/bash.asc[] diff --git a/B-embedding-git-in-your-applications.asc b/B-embedding-git-in-your-applications.asc index 3a3b70c08..f3e602979 100644 --- a/B-embedding-git-in-your-applications.asc +++ b/B-embedding-git-in-your-applications.asc @@ -15,3 +15,5 @@ include::book/B-embedding-git/sections/libgit2.asc[] include::book/B-embedding-git/sections/jgit.asc[] include::book/B-embedding-git/sections/go-git.asc[] + +include::book/B-embedding-git/sections/dulwich.asc[] diff --git a/C-git-commands.asc b/C-git-commands.asc index 893ae811a..3e3523ef7 100644 --- a/C-git-commands.asc +++ b/C-git-commands.asc @@ -8,6 +8,13 @@ However, this leaves us with examples of usage of the commands somewhat scattere In this appendix, we'll go through all the Git commands we addressed throughout the book, grouped roughly by what they're used for. We'll talk about what each command very generally does and then point out where in the book you can find us having used it. +[TIP] +==== +You can abbreviate long options. +For example, you can type in `git commit --a`, which acts as if you typed `git commit --amend`. +This only works when the letters after `--` are unique for one option. +Do use the full option when writing scripts. +==== === Setup and Config @@ -34,6 +41,44 @@ In <> we showed how to set up smudge an Finally, basically the entirety of <> is dedicated to the command. +[[ch_core_editor]] +==== git config core.editor commands + +Accompanying the configuration instructions in <>, many editors can be set as follows: + +.Exhaustive list of `core.editor` configuration commands +[cols="1,2",options="header"] +|============================== +|Editor | Configuration command +|Atom |`git config --global core.editor "atom --wait"` +|BBEdit (macOS, with command line tools) |`git config --global core.editor "bbedit -w"` +|Emacs |`git config --global core.editor emacs` +|Gedit (Linux) |`git config --global core.editor "gedit --wait --new-window"` +|Gvim (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Vim\vim72\gvim.exe' --nofork '%*'"` (Also see note below) +|Helix |`git config --global core.editor "hx"` +|Kate (Linux) |`git config --global core.editor "kate --block"` +|nano |`git config --global core.editor "nano -w"` +|Notepad (Windows 64-bit) |`git config core.editor notepad` +|Notepad++ (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Notepad+\+\notepad++.exe' -multiInst -notabbar -nosession -noPlugin"` (Also see note below) +|Scratch (Linux)|`git config --global core.editor "scratch-text-editor"` +|Sublime Text (macOS) |`git config --global core.editor "/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl --new-window --wait"` +|Sublime Text (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Sublime Text 3\sublime_text.exe' -w"` (Also see note below) +|TextEdit (macOS)|`git config --global core.editor "open --wait-apps --new -e"` +|Textmate |`git config --global core.editor "mate -w"` +|Textpad (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\TextPad 5\TextPad.exe' -m"` (Also see note below) +|UltraEdit (Windows 64-bit) | `git config --global core.editor Uedit32` +|Vim |`git config --global core.editor "vim --nofork"` +|Visual Studio Code |`git config --global core.editor "code --wait"` +|VSCodium (Free/Libre Open Source Software Binaries of VSCode) | `git config --global core.editor "codium --wait"` +|WordPad |`git config --global core.editor "'C:\Program Files\Windows NT\Accessories\wordpad.exe'"` +|Xi | `git config --global core.editor "xi --wait"` +|============================== + +[NOTE] +==== +If you have a 32-bit editor on a Windows 64-bit system, the program will be installed in `C:\Program Files (x86)\` rather than `C:\Program Files\` as in the table above. +==== + ==== git help The `git help` command is used to show you all the documentation shipped with Git about any command. @@ -41,7 +86,6 @@ While we're giving a rough overview of most of the more popular ones in this app We introduced the `git help` command in <> and showed you how to use it to find more information about the `git shell` in <>. - === Getting and Creating Projects There are two ways to get a Git repository. @@ -53,7 +97,7 @@ To take a directory and turn it into a new Git repository so you can start versi We first introduce this in <>, where we show creating a brand new repository to start working with. -We talk briefly about how you can change the default branch from ``master'' in <>. +We talk briefly about how you can change the default branch name from "`master`" in <>. We use this command to create an empty bare repository for a server in <>. @@ -76,14 +120,13 @@ Finally, in <> we learn the `--recurse-submo Though it's used in many other places through the book, these are the ones that are somewhat unique or where it is used in ways that are a little different. - === Basic Snapshotting For the basic workflow of staging content and committing it to your history, there are only a few basic commands. ==== git add -The `git add` command adds content from the working directory into the staging area (or ``index'') for the next commit. +The `git add` command adds content from the working directory into the staging area (or "`index`") for the next commit. When the `git commit` command is run, by default it only looks at this staging area, so `git add` is used to craft what exactly you would like your next commit snapshot to look like. This command is an incredibly important command in Git and is mentioned or used dozens of times in this book. @@ -269,7 +312,6 @@ This command is introduced and covered in detail in <>. - === Sharing and Updating Projects There are not very many commands in Git that access the network, nearly all of the commands operate on the local database. @@ -323,7 +365,7 @@ This can help you be very specific about what work you wish to share. ==== git remote The `git remote` command is a management tool for your record of remote repositories. -It allows you to save long URLs as short handles, such as ``origin'' so you don't have to type them out all the time. +It allows you to save long URLs as short handles, such as "`origin`" so you don't have to type them out all the time. You can have several of these and the `git remote` command is used to add, change and delete them. This command is covered in detail in <>, including listing, adding, removing and renaming them. @@ -371,7 +413,6 @@ It's a way to get a description of a commit that is as unambiguous as a commit S We use `git describe` in <> and <> to get a string to name our release file after. - === Debugging Git has a couple of commands that are used to help debug an issue in your code. @@ -499,7 +540,7 @@ If you're administering a Git repository or need to fix something in a big way, ==== git gc -The `git gc` command runs ``garbage collection'' on your repository, removing unnecessary files in your database and packing up the remaining files into a more efficient format. +The `git gc` command runs "`garbage collection`" on your repository, removing unnecessary files in your database and packing up the remaining files into a more efficient format. This command normally runs in the background for you, though you can manually run it if you wish. We go over some examples of this in <>. @@ -524,8 +565,7 @@ The `git filter-branch` command is used to rewrite loads of commits according to In <> we explain the command and explore several different options such as `--commit-filter`, `--subdirectory-filter` and `--tree-filter`. -In <> and <> we use it to fix up imported external repositories. - +In <> we use it to fix up imported external repositories. === Plumbing Commands diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..b311dcddc --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,29 @@ +# This CITATION.cff file was generated with cffinit. +# Visit https://bit.ly/cffinit to generate yours today! + +cff-version: 1.2.0 +title: Pro Git +message: >- + If you use this software, please cite it using the + metadata from this file. +type: software +authors: + - given-names: Scott + family-names: Chacon + email: schacon@gmail.com + - given-names: Ben + family-names: Straub + email: ben@straub.cc +identifiers: + - type: url + value: 'https://git-scm.com/book/en/v2' + description: Pro Git website +repository-code: 'https://github.com/progit/progit2' +url: 'https://git-scm.com/book/en/v2' +keywords: + - git + - book + - asciidoc + - pro-git +license: CC-BY-NC-SA-3.0 +version: '2' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0da0c2d9f..ba00b375c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,44 +1,44 @@ # Contributing to Pro Git (2nd Edition) -## Licensing +## Licensing your work to us -By opening a pull request to this repository, you agree to provide your work under the [project license](LICENSE.asc). +When you open a pull request, you agree to provide your work under the [project license](LICENSE.asc). Also, you agree to grant such license of your work as is required for the purposes of future print editions to @ben and @schacon. Should your changes appear in a printed edition, you'll be included in the [contributors list](book/contributors.asc). ## Signaling an Issue -Before signaling an issue, please check that there isn't already a similar one in the bug tracking system. +Search for similar issues, before creating a new issue. -Also, if this issue has been spotted on the git-scm.com site, please cross-check that it is still present in the pdf version. -The issue may have already been corrected, but the changes have not been deployed yet. +Also, if this issue has been spotted on the git-scm.com site, cross-check that the issue is present in the pdf version. +The issue may have already been corrected in the source files, but not yet deployed to the git-scm.com site. ## Small Corrections Errata and basic clarifications will be accepted if we agree that they improve the content. -You can also open an issue so we can figure out how or if it needs to be addressed. +You can also open an issue so that we can discuss how or if the issue needs to be addressed. -If you've never done this before, the [flow guide](https://guides.github.com/introduction/flow/) might be useful. +If you've never done this before, the [flow guide](https://docs.github.com/en/get-started/quickstart/github-flow) might be useful. ## Large Rewrites Open an issue for discussion before you start. -These changes tend to be very subjective, often only clarifying things for some small percentage of people and it's rarely worth the time to accept them. -Professional copy editors have already reviewed this content multiple times so while you may have somewhat better taste and grammar than we do it's unlikely that your prose is going to be *so* much better that it's worth changing vast swaths of text. +A large rewrite tends to be very subjective, often only clarifying things for a small amount of readers. +Professional copy editors have already reviewed this content multiple times. +It's unlikely that your prose is going to be *so* much better that it's worth changing large portions of text. ## Figures -The images in this book were generated using [Sketch 3](http://bohemiancoding.com/sketch/), with the [included sketchbook file](diagram-source/progit.sketch). +The images in this book are generated using [Sketch 3](https://www.sketch.com/), with the [included sketchbook file](diagram-source/progit.sketch). -To add a figure: +To create a figure: 1. Add a page to the sketchbook. -Try to use the included symbols wherever possible. +Use the included symbols wherever possible. 2. Add a "slice" to your page. -Give it a name that matches the destination PNG filename, relative from the root of the source directory. -3. Make sure your slice is set to export at "800w". - +Name the slice so that it matches the destination PNG filename, relative from the root of the source directory. +3. Set your slice to export at "800w". ## Translations -If you would like to contribute to translating Pro Git into your language, take a look at [TRANSLATING.md](TRANSLATING.md). +If you want to contribute to translating Pro Git into your language, take a look at [TRANSLATING.md](TRANSLATING.md). diff --git a/Gemfile b/Gemfile index 4ecffb4fd..0893f08a4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,16 +1,18 @@ source 'https://rubygems.org' -gem 'rake' -gem 'asciidoctor', '1.5.6.1' +gem 'rake', '13.2.1' +gem 'asciidoctor', '2.0.22' -gem 'json' -gem 'awesome_print' +gem 'json', '2.9.1' +gem 'awesome_print', '1.9.2' -gem 'asciidoctor-epub3', :git => 'https://github.com/asciidoctor/asciidoctor-epub3' -gem 'asciidoctor-pdf', '1.5.0.alpha.16' +gem 'asciidoctor-fb2', '0.7.0' +gem 'asciidoctor-epub3', '2.1.3' +gem 'asciidoctor-pdf', '2.3.17' -gem 'coderay' -gem 'pygments.rb' -gem 'thread_safe' -gem 'epubcheck' -gem 'kindlegen' +gem 'coderay', '1.1.3' +gem 'pygments.rb', '2.4.1' +gem 'thread_safe', '0.3.6' +gem 'epubcheck-ruby', '5.2.0.0' +gem 'html-proofer', '5.0.9' +gem 'kindlegen', '3.1.1' diff --git a/LICENSE.asc b/LICENSE.asc index 81f2824e2..5aceb9e9b 100644 --- a/LICENSE.asc +++ b/LICENSE.asc @@ -1 +1,2 @@ -This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. +This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. +To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0 or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. diff --git a/README.asc b/README.asc index fa40bad8e..54e480ded 100644 --- a/README.asc +++ b/README.asc @@ -2,12 +2,12 @@ Welcome to the second edition of the Pro Git book. -You can find this book online at: http://git-scm.com/book +You can find this book online at: https://git-scm.com/book Like the first edition, the second edition of Pro Git is open source under a Creative Commons license. A couple of things have changed since open sourcing the first edition. -For one, we've moved from Markdown to the amazing Asciidoc format for the text of the book. +For one, we've moved from Markdown to the amazing AsciiDoc format for the text of the book; here's an https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/[AsciiDoc quick reference]. We've also moved to keeping the translations in separate repositories rather than subdirectories of the English repository. See link:TRANSLATING.md[the translating document] for more information. @@ -30,6 +30,33 @@ Converting to PDF... -- PDF output at progit.pdf ---- +You can generate just one of the supported formats (HTML, EPUB, mobi, or PDF). +Use one of the following commands: + +To generate the HTML book: + +---- +$ bundle exec rake book:build_html +---- + +To generate the EPUB book: + +---- +$ bundle exec rake book:build_epub +---- + +To generate the mobi book: + +---- +$ bundle exec rake book:build_mobi +---- + +To generate the PDF book: + +---- +$ bundle exec rake book:build_pdf +---- + == Signaling an Issue Before signaling an issue, please check that there isn't already a similar one in the bug tracking system. diff --git a/Rakefile b/Rakefile index 5f58cb6d9..4f7c3dac9 100644 --- a/Rakefile +++ b/Rakefile @@ -1,37 +1,138 @@ namespace :book do - desc 'build basic book formats' - task :build do - `cp progit.asc progit.asc.bak` + # Variables referenced for build + version_string = `git describe --tags --abbrev=0`.chomp + if version_string.empty? + version_string = '0' + else + versions = version_string.split('.') + version_string = versions[0] + '.' + versions[1] + '.' + versions[2].to_i.next.to_s + end + date_string = Time.now.strftime('%Y-%m-%d') + params = "--attribute revnumber='#{version_string}' --attribute revdate='#{date_string}'" + header_hash = `git rev-parse --short HEAD`.strip + + # Check contributors list + # This checks commit hash stored in the header of list against current HEAD + def check_contrib + if File.exist?('book/contributors.txt') + current_head_hash = `git rev-parse --short HEAD`.strip + header = `head -n 1 book/contributors.txt`.strip + # Match regex, then coerce resulting array to string by join + header_hash = header.scan(/[a-f0-9]{7,}/).join + + if header_hash == current_head_hash + puts "Hash on header of contributors list (#{header_hash}) matches the current HEAD (#{current_head_hash})" + else + puts "Hash on header of contributors list (#{header_hash}) does not match the current HEAD (#{current_head_hash}), refreshing" + sh "rm book/contributors.txt" + # Reenable and invoke task again + Rake::Task['book/contributors.txt'].reenable + Rake::Task['book/contributors.txt'].invoke + end + end + end + + desc 'build basic book formats' + task :build => [:build_html, :build_epub, :build_fb2, :build_mobi, :build_pdf] do begin - version_string = ENV['TRAVIS_TAG'] || '0' - text = File.read('progit.asc') - new_contents = text.gsub("$$VERSION$$", version_string).gsub("$$DATE$$", Time.now.strftime("%Y-%m-%d")) - File.open("progit.asc", "w") {|file| file.puts new_contents } + # Run check + Rake::Task['book:check'].invoke + + # Rescue to ignore checking errors + rescue => e + puts e.message + puts 'Error when checking books (ignored)' + end + end - puts "Generating contributors list" - `git shortlog -s | grep -v -E "(Straub|Chacon)" | cut -f 2- | column -c 120 > book/contributors.txt` + desc 'build basic book formats (for ci)' + task :ci => [:build_html, :build_epub, :build_fb2, :build_mobi, :build_pdf] do + # Run check, but don't ignore any errors + Rake::Task['book:check'].invoke + end + + desc 'generate contributors list' + file 'book/contributors.txt' do + puts 'Generating contributors list' + sh "echo 'Contributors as of #{header_hash}:\n' > book/contributors.txt" + sh "git shortlog -s HEAD | grep -v -E '(Straub|Chacon|dependabot)' | cut -f 2- | sort | column -c 120 >> book/contributors.txt" + end + + desc 'build HTML format' + task :build_html => 'book/contributors.txt' do + check_contrib() + + puts 'Converting to HTML...' + sh "bundle exec asciidoctor #{params} -a data-uri progit.asc" + puts ' -- HTML output at progit.html' + + end - puts "Converting to HTML..." - `bundle exec asciidoctor progit.asc` - puts " -- HTML output at progit.html" + desc 'build Epub format' + task :build_epub => 'book/contributors.txt' do + check_contrib() - puts "Converting to EPub..." - `bundle exec asciidoctor-epub3 progit.asc` - puts " -- Epub output at progit.epub" + puts 'Converting to EPub...' + sh "bundle exec asciidoctor-epub3 #{params} progit.asc" + puts ' -- Epub output at progit.epub' + + end + + desc 'build FB2 format' + task :build_fb2 => 'book/contributors.txt' do + check_contrib() + + puts 'Converting to FB2...' + sh "bundle exec asciidoctor-fb2 #{params} progit.asc" + puts ' -- FB2 output at progit.fb2.zip' + + end + + desc 'build Mobi format' + task :build_mobi => 'book/contributors.txt' do + check_contrib() puts "Converting to Mobi (kf8)..." - `bundle exec asciidoctor-epub3 -a ebook-format=kf8 progit.asc` + sh "bundle exec asciidoctor-epub3 #{params} -a ebook-format=kf8 progit.asc" puts " -- Mobi output at progit.mobi" + end - puts "Converting to PDF... (this one takes a while)" - `bundle exec asciidoctor-pdf progit.asc 2>/dev/null` - puts " -- PDF output at progit.pdf" + desc 'build PDF format' + task :build_pdf => 'book/contributors.txt' do + check_contrib() - ensure - `mv progit.asc.bak progit.asc` + puts 'Converting to PDF... (this one takes a while)' + sh "bundle exec asciidoctor-pdf #{params} progit.asc 2>/dev/null" + puts ' -- PDF output at progit.pdf' + end + + desc 'Check generated books' + task :check => [:build_html, :build_epub] do + puts 'Checking generated books' + + sh "htmlproofer progit.html" + sh "epubcheck progit.epub" + end + + desc 'Clean all generated files' + task :clean do + begin + puts 'Removing generated files' + + FileList['book/contributors.txt', 'progit.html', 'progit-kf8.epub', 'progit.epub', 'progit.fb2.zip', 'progit.mobi', 'progit.pdf'].each do |file| + rm file + + # Rescue if file not found + rescue Errno::ENOENT => e + begin + puts e.message + puts 'Error removing files (ignored)' + end + end end end + end task :default => "book:build" diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..f1ed9cb69 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,5 @@ +## Reporting a security issue + +If you find any security issue or vulnerability, please email [ben@straub.cc](mailto:ben@straub.cc) with your report. + +Do not open a issue on the `progit/progit2` repository or discuss the vulnerability in public. diff --git a/TRANSLATING.md b/TRANSLATING.md index 3d7266950..1c8670925 100644 --- a/TRANSLATING.md +++ b/TRANSLATING.md @@ -1,116 +1,97 @@ # Translating Pro Git (2nd Edition) -The translation are managed in a decentralized way, with each translation teams maintaining their own project. Since each translation is a different repository, maintainers teams are self organized for each project. - -The Pro Git team simply pulls them in and builds them for the translation teams on the git-scm.com website. - -## A Word About the Activity of Translating - -Pro Git is a book about a technical tool. As such it combines a double difficulty for translators: - - * The translation of a book, even in parts requires that the translators be aware of the whole content of book. This usually requires for each translator to have read the book and to agree with some common style of output. These rules ensure that the reader won't feel transitions in the text when switching from a part produced by one translator to a part from another one. - * Git is a computer tool. Pro Git tries to make it affordable to not so technical-savy people and it's really good that the translators do not work on the core of git, because it's a user's perspective that is needed for the most part of the book. That also means that the translation may be deceiving if the translator has never used Git. Good translators must be Git users to actually keep Progit understandable. - -Moreover, the book was written in a formatting language called [Asciidoc](http://asciidoctor.org/). Some parts of the files making up the book are in fact Asciidoc commands. Upsetting these commands will make it impossible to assemble and to compile of the files into the PDF, epub and html output. - -Be sure to have read and understood the basics of [how Asciidoc formatting works](https://asciidoctor.org/docs/asciidoc-syntax-quick-reference/) before starting to change any file. - -Translating Pro Git is such an endeavor that if you don't want to loose your energy on poor results, stress and deceived expectations, you have to set up, enforce and abide by rules stemming from these basic advices. - -## Translating the Book to Another Language - -### Existing Projects - -If you wish to help at translating Progit 2nd edition to your language, first check for an already existing project in the following list and get in touch with the people in charge of itif there's already one. Go to the project page, open an issue, present yourself and ask what can be done. - -Existing projects include: - - Language | Project ------------- | ------------- -Беларуская | [progit/progit2-be](https://github.com/progit/progit2-be) -Čeština | [progit-cs/progit2-cs](https://github.com/progit-cs/progit2-cs) -English | [progit/progit2](https://github.com/progit/progit2) -Español | [progit/progit2-es](https://github.com/progit/progit2-es) -Français | [progit/progit2-fr](https://github.com/progit/progit2-fr) -Deutsch | [progit-de/progit2](https://github.com/progit-de/progit2) -Ελληνικά | [progit2-gr/progit2](https://github.com/progit2-gr/progit2) -Indonesian | [progit/progit2-id](https://github.com/progit/progit2-id) -Italiano | [progit/progit2-it](https://github.com/progit/progit2-it) -日本語 | [progit/progit2-ja](https://github.com/progit/progit2-ja) -한국어 | [progit/progit2-ko](https://github.com/progit/progit2-ko) -Bahasa Melayu| [progit2-ms/progit2](https://github.com/progit2-ms/progit2) -Nederlands | [progit/progit2-nl](https://github.com/progit/progit2-nl) -Polski | [progit2-pl/progit2-pl](https://github.com/progit2-pl/progit2-pl) -Português (Brasil) | [progit2-pt-br/progit2](https://github.com/progit2-pt-br/progit2) -Русский | [progit/progit2-ru](https://github.com/progit/progit2-ru) -Slovenščina | [progit/progit2-sl](https://github.com/progit/progit2-sl) -Српски | [progit/progit2-sr](https://github.com/progit/progit2-sr) -Tagalog | [progit2-tl/progit2](https://github.com/progit2-tl/progit2) -Türkçe | [progit/progit2-tr](https://github.com/progit/progit2-tr) -Українська| [progit/progit2-uk](https://github.com/progit/progit2-uk) -Ўзбекча | [progit/progit2-uz](https://github.com/progit/progit2-uz) -简体中文 | [progit/progit2-zh](https://github.com/progit/progit2-zh) -正體中文 | [progit/progit2-zh-tw](https://github.com/progit/progit2-zh-tw) - -### Your Language is not Listed - -Then you're lucky! You're gonna be the initiator of a new translation project! - -You can start to make your own version with the second edition in English, available here. To do so, - - 1. Pick your the [ISO 639 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) and [create a GitHub organization](https://help.github.com/articles/creating-a-new-organization-from-scratch/), say `progit2-[your code]` on github - 2. Create a project progit2 - 3. Copy the structure of progit/progit2 (this project) in your project and start translating. You can reuse some material from the first edition, but beware that: - 1. the text has been reworked in numerous parts - 2. the markup has changed from markdown to [asciidoc](http://asciidoc.org) - 4. Push to the new repo a few translated chapters - 5. Ping an organizer so that the second edition of Progit in your language is pushed on git-scm.com. - -### Updating the Status of Your Translation - -On git-scm.com, the translations are listed in three categories: - - 1. Translation just started. The introduction is translated at least, but there's not much to read. It's time to translate the meat of the book. - 2. Partially translated. The chapters up to chapter 6 have been translated. The book is becoming useful to help the reader become a fluent Git user. - 3. Fully Translated. The book is almost fully translated. - - Once you have reached one of these levels, just contact the maintainers of the git-scm site to make your translation appear in the right category. - -## Using Travis-CI for Continuous Integration - -Travis-CI is a [continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) service that fits nicely with GitHub. It can be used to automatically check that the pull-requests from the collaborators don't break the Asciidoc markup but can also provide compiled versions of the books. - -Setting up Travis-CI requires to have administrative privileges over the repository. If you're not an administrator of the repository, let them know that they can enhance the visibility of the project by doing the following steps. - -### Checking the Validity of the Text - -This is the most useful set up for contributors. It allows to check at any moment that the book compiles properly and provides the same checks for pull-requests. - -#### Registering for CI - -If you don't already have an account at travis-ci.org, then go to [their page](https://travis-ci.org/) and log in. Otherwise you can register with your GitHub account. - -Register your project in Travis. If a build is not fired automatically, it can be forced. The logs of build provide useful data when the build fails. - -Please refer to the documentation on Travis-ci.org for further information on using their system. - -#### Setting up Your Repo for CI - -Travis-CI works by scanning your project's root directory for a file named `.travis.yml` and following the recipe that it contains. The good news is that you don't really need to understand how all of this works. There's a project already set up to simplify the setup. Download the file [here](https://raw.githubusercontent.com/progit/progit2-pub/master/travis.yml) and save it as `.travis.yml` in your working copy. Commit it and push it; that should fire up a compilation and a check of the book's contents. - - -### Setting Up a Publication Chain for Ebooks - -This is a quite technical task. Please ping @jnavila for this. - -## Beyond Progit +The translations are managed in a decentralized way. Each translation team maintains their own project. Each translation is in its own repository, the Pro Git team simply pulls the changes and builds them into the https://git-scm.com website when ready. + +## General guidance for translating Pro Git + +Pro Git is a book about a technical tool, therefore translating it is difficult compared to a non-technical translation. + +The following are guidelines to help you on your way: +* Before you begin, read the whole Git Pro book in English, so that you're aware of the content, and are familiar with the style used. +* Ensure you have a good working knowledge of Git, so that explaining the technical terms is doable. +* Stick to a common style and format for the translation. +* Be sure to read and understand the basics of [Asciidoc formatting](https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/). Not following the asciidoc syntax can lead to problems with building/compilation of the pdf, epub and html files needed for the book. + +## Translating the book to another language + +### Helping with a existing project + +* Check for an already existing project in the following table. +* Go to the project's page on GitHub. +* Open an issue, introduce yourself and ask where you can help. + +| Language | GitHub page | +| :------------- | :------------- | +| العربية | [progit2-ar/progit2](https://github.com/progit2-ar/progit2) | +| Беларуская | [progit/progit2-be](https://github.com/progit/progit2-be) | +| български език | [progit/progit2-bg](https://github.com/progit/progit2-bg) | +| Čeština | [progit-cs/progit2-cs](https://github.com/progit-cs/progit2-cs) | +| English | [progit/progit2](https://github.com/progit/progit2) | +| Español | [progit/progit2-es](https://github.com/progit/progit2-es) | +| فارسی | [progit2-fa/progit2](https://github.com/progit2-fa/progit2) | +| Français | [progit/progit2-fr](https://github.com/progit/progit2-fr) | +| Deutsch | [progit/progit2-de](https://github.com/progit/progit2-de) | +| Ελληνικά | [progit2-gr/progit2](https://github.com/progit2-gr/progit2) | +| Indonesian | [progit/progit2-id](https://github.com/progit/progit2-id) | +| Italiano | [progit/progit2-it](https://github.com/progit/progit2-it) | +| 日本語 | [progit/progit2-ja](https://github.com/progit/progit2-ja) | +| 한국어 | [progit/progit2-ko](https://github.com/progit/progit2-ko) | +| Македонски | [progit2-mk/progit2](https://github.com/progit2-mk/progit2) | +| Bahasa Melayu| [progit2-ms/progit2](https://github.com/progit2-ms/progit2) | +| Nederlands | [progit/progit2-nl](https://github.com/progit/progit2-nl) | +| Polski | [progit2-pl/progit2-pl](https://github.com/progit2-pl/progit2-pl) | +| Português (Brasil) | [progit/progit2-pt-br](https://github.com/progit/progit2-pt-br) | +| Русский | [progit/progit2-ru](https://github.com/progit/progit2-ru) | +| Slovenščina | [progit/progit2-sl](https://github.com/progit/progit2-sl) | +| Српски | [progit/progit2-sr](https://github.com/progit/progit2-sr) | +| Svenska | [progit2-sv/progit2](https://github.com/progit2-sv/progit2) | +| Tagalog | [progit2-tl/progit2](https://github.com/progit2-tl/progit2) | +| Türkçe | [progit/progit2-tr](https://github.com/progit/progit2-tr) | +| Українська| [progit/progit2-uk](https://github.com/progit/progit2-uk) | +| Ўзбекча | [progit/progit2-uz](https://github.com/progit/progit2-uz) | +| 简体中文 | [progit/progit2-zh](https://github.com/progit/progit2-zh) | +| 正體中文 | [progit/progit2-zh-tw](https://github.com/progit/progit2-zh-tw) | + +### Starting a new translation + +If there is no project for your language, you can start your own translation. + +Base your work on the second edition of the book, available [here](https://github.com/progit/progit2). To do so: + 1. Pick the correct [ISO 639 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) for your language. + 1. Create a [GitHub organization](https://docs.github.com/en/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch), for example: `progit2-[your code]` on GitHub. + 1. Create a project `progit2`. + 1. Copy the structure of progit/progit2 (this project) in your project and start translating. + +### Updating the status of your translation + +On https://git-scm.com, the translations are divided into three categories. Once you have reached one of these levels, contact the maintainers of https://git-scm.com/ so that they can pull the changes. + +| Category | Completion | +| :------------- | :------------- | +| Translation started for | Introduction translated, not much else. | +| Partial translations available in | up to chapter 6 has been translated. | +| Full translation available in |the book is (almost) fully translated. | + +## Continuous integration with GitHub Actions + +GitHub Actions is a [continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) service that integrates with GitHub. GitHub Actions is used to ensure that a pull-request doesn't break the build or compilation. GitHub Actions can also provide compiled versions of the book. + +The configuration for GitHub Actions is contained in the `.github/workflows` directory, and if you bring in the `main` branch of the root repository you'll get them for free. +However, if you created your translation repo by _forking_ the root repo, there's an extra step you must complete (if you did not fork, you can skip this part). +GitHub assumes that forks will be used to contribute to the repo from which they were forked, so you'll have to visit the "Actions" tab on your forked repo, and click the "I understand my workflows" button to allow the actions to run. + +## Setting up a publication chain for e-books + +This is a technical task, please ping @jnavila to get started with epub publication. + +## Beyond Pro Git Translating the book is the first step. Once this is finished, you could consider translating the user interface of Git itself. -This task requires a more technical knowledge of the tool than the book. Hopefully, after having translated the full book content, you can understand the terms used in the application. If you feel technically up to the task, the repo is [here](https://github.com/git-l10n/git-po) and you just have to follow the [guide](https://github.com/git-l10n/git-po/blob/master/po/README). +This task requires a more technical knowledge of the tool than the book. Hopefully, after having translated the full book content, you can understand the terms used in the application. If you feel technically up to the task, the repo is [here](https://github.com/git-l10n/git-po) and you just have to follow the [guide](https://github.com/git-l10n/git-po/blob/master/po/README.md). Beware though that - * you'll need to use more specific tools to manage localization po files (such as editing them with [poedit](https://poedit.net/) and merging them. You might need to compile git in order to check your work. + * you'll need to use more specific tools to manage localization po files (such as editing them with [poedit](https://poedit.net/)) and merging them. You might need to compile git in order to check your work. * a basic knowledge of how translating applications works is required, which is significantly different from translating books. * the core Git project uses more stringent [procedures](https://github.com/git-l10n/git-po/blob/master/Documentation/SubmittingPatches) to accept contributions, be sure to abide by them. diff --git a/atlas.json b/atlas.json index d66a60a3c..b75c8d65c 100644 --- a/atlas.json +++ b/atlas.json @@ -1,5 +1,5 @@ { - "branch": "master", + "branch": "main", "files": [ "book/cover.html", "LICENSE.asc", diff --git a/book/01-introduction/sections/about-version-control.asc b/book/01-introduction/sections/about-version-control.asc index 108925285..182fcedc0 100644 --- a/book/01-introduction/sections/about-version-control.asc +++ b/book/01-introduction/sections/about-version-control.asc @@ -1,7 +1,7 @@ === About Version Control (((version control))) -What is ``version control'', and why should you care? +What is "`version control`", and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the files being version controlled, though in reality you can do this with nearly any type of file on a computer. @@ -19,21 +19,21 @@ It is easy to forget which directory you're in and accidentally write to the wro To deal with this issue, programmers long ago developed local VCSs that had a simple database that kept all the changes to files under revision control. -.Local version control. +.Local version control diagram image::images/local.png[Local version control diagram] -One of the more popular VCS tools was a system called RCS, which is still distributed with many computers today. -RCS works by keeping patch sets (that is, the differences between files) in a special format on disk; it can then re-create what any file looked like at any point in time by adding up all the patches. +One of the most popular VCS tools was a system called RCS, which is still distributed with many computers today. +https://www.gnu.org/software/rcs/[RCS^] works by keeping patch sets (that is, the differences between files) in a special format on disk; it can then re-create what any file looked like at any point in time by adding up all the patches. ==== Centralized Version Control Systems (((version control,centralized))) The next major issue that people encounter is that they need to collaborate with developers on other systems. To deal with this problem, Centralized Version Control Systems (CVCSs) were developed. -These systems, such as CVS, Subversion, and Perforce, have a single server that contains all the versioned files, and a number of clients that check out files from that central place. (((CVS)))(((Subversion)))(((Perforce))) +These systems (such as CVS, Subversion, and Perforce) have a single server that contains all the versioned files, and a number of clients that check out files from that central place.(((CVS)))(((Subversion)))(((Perforce))) For many years, this has been the standard for version control. -.Centralized version control. +.Centralized version control diagram image::images/centralized.png[Centralized version control diagram] This setup offers many advantages, especially over local VCSs. @@ -44,17 +44,17 @@ However, this setup also has some serious downsides. The most obvious is the single point of failure that the centralized server represents. If that server goes down for an hour, then during that hour nobody can collaborate at all or save versioned changes to anything they're working on. If the hard disk the central database is on becomes corrupted, and proper backups haven't been kept, you lose absolutely everything -- the entire history of the project except whatever single snapshots people happen to have on their local machines. -Local VCS systems suffer from this same problem -- whenever you have the entire history of the project in a single place, you risk losing everything. +Local VCSs suffer from this same problem -- whenever you have the entire history of the project in a single place, you risk losing everything. ==== Distributed Version Control Systems (((version control,distributed))) This is where Distributed Version Control Systems (DVCSs) step in. -In a DVCS (such as Git, Mercurial, Bazaar or Darcs), clients don't just check out the latest snapshot of the files; rather, they fully mirror the repository, including its full history. +In a DVCS (such as Git, Mercurial or Darcs), clients don't just check out the latest snapshot of the files; rather, they fully mirror the repository, including its full history. Thus, if any server dies, and these systems were collaborating via that server, any of the client repositories can be copied back up to the server to restore it. Every clone is really a full backup of all the data. -.Distributed version control. +.Distributed version control diagram image::images/distributed.png[Distributed version control diagram] Furthermore, many of these systems deal pretty well with having several remote repositories they can work with, so you can collaborate with different groups of people in different ways simultaneously within the same project. diff --git a/book/01-introduction/sections/command-line.asc b/book/01-introduction/sections/command-line.asc index 02c92cd89..e7fd185bb 100644 --- a/book/01-introduction/sections/command-line.asc +++ b/book/01-introduction/sections/command-line.asc @@ -3,9 +3,9 @@ There are a lot of different ways to use Git. There are the original command-line tools, and there are many graphical user interfaces of varying capabilities. For this book, we will be using Git on the command line. -For one, the command line is the only place you can run _all_ Git commands – most of the GUIs implement only a partial subset of Git functionality for simplicity. +For one, the command line is the only place you can run _all_ Git commands -- most of the GUIs implement only a partial subset of Git functionality for simplicity. If you know how to run the command-line version, you can probably also figure out how to run the GUI version, while the opposite is not necessarily true. Also, while your choice of graphical client is a matter of personal taste, _all_ users will have the command-line tools installed and available. -So we will expect you to know how to open Terminal in Mac or Command Prompt or Powershell in Windows. +So we will expect you to know how to open Terminal in macOS or Command Prompt or PowerShell in Windows. If you don't know what we're talking about here, you may need to stop and research that quickly so that you can follow the rest of the examples and descriptions in this book. diff --git a/book/01-introduction/sections/first-time-setup.asc b/book/01-introduction/sections/first-time-setup.asc index dee3811ee..10b7049ce 100644 --- a/book/01-introduction/sections/first-time-setup.asc +++ b/book/01-introduction/sections/first-time-setup.asc @@ -8,21 +8,29 @@ You can also change them at any time by running through the commands again. Git comes with a tool called `git config` that lets you get and set configuration variables that control all aspects of how Git looks and operates.(((git commands, config))) These variables can be stored in three different places: -1. `/etc/gitconfig` file: Contains values applied to every user on the system and all their repositories. +1. `[path]/etc/gitconfig` file: Contains values applied to every user on the system and all their repositories. If you pass the option `--system` to `git config`, it reads and writes from this file specifically. - (Because this is a system configuration file, you would need administrative or superuser privilege to make changes to it.) + Because this is a system configuration file, you would need administrative or superuser privilege to make changes to it. 2. `~/.gitconfig` or `~/.config/git/config` file: Values specific personally to you, the user. - You can make Git read and write to this file specifically by passing the `--global` option. + You can make Git read and write to this file specifically by passing the `--global` option, and this affects _all_ of the repositories you work with on your system. 3. `config` file in the Git directory (that is, `.git/config`) of whatever repository you're currently using: Specific to that single repository. + You can force Git to read from and write to this file with the `--local` option, but that is in fact the default. + Unsurprisingly, you need to be located somewhere in a Git repository for this option to work properly. -Each level overrides values in the previous level, so values in `.git/config` trump those in `/etc/gitconfig`. +Each level overrides values in the previous level, so values in `.git/config` trump those in `[path]/etc/gitconfig`. On Windows systems, Git looks for the `.gitconfig` file in the `$HOME` directory (`C:\Users\$USER` for most people). -It also still looks for `/etc/gitconfig`, although it's relative to the MSys root, which is wherever you decide to install Git on your Windows system when you run the installer. -If you are using version 2.x or later of Git for Windows, there is also a system-level config file at -`C:\Documents and Settings\All Users\Application Data\Git\config` on Windows XP, and in `C:\ProgramData\Git\config` on Windows Vista and newer. +It also still looks for `[path]/etc/gitconfig`, although it's relative to the MSys root, which is wherever you decide to install Git on your Windows system when you run the installer. +If you are using version 2.x or later of Git for Windows, there is also a system-level config file at `C:\Documents and Settings\All Users\Application Data\Git\config` on Windows XP, and in `C:\ProgramData\Git\config` on Windows Vista and newer. This config file can only be changed by `git config -f ` as an admin. +You can view all of your settings and where they are coming from using: + +[source,console] +---- +$ git config --list --show-origin +---- + ==== Your Identity The first thing you should do when you install Git is to set your user name and email address. @@ -34,11 +42,12 @@ $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com ---- -Again, you need to do this only once if you pass the `--global` option, because then Git will always use that information for anything you do on that system. +Again, you need to do this only once if you pass the `--global` option, because then Git will always use that information for your user on that system. If you want to override this with a different name or email address for specific projects, you can run the command without the `--global` option when you're in that project. Many of the GUI tools will help you do this when you first run them. +[[_editor]] ==== Your Editor Now that your identity is set up, you can configure the default text editor that will be used when Git needs you to type in a message. @@ -59,20 +68,13 @@ If you are on a 32-bit Windows system, or you have a 64-bit editor on a 64-bit s [source,console] ---- -$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -nosession" ----- - -If you have a 32-bit editor on a 64-bit system, the program will be installed in `C:\Program Files (x86)`: - -[source,console] ----- -$ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -nosession" +$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" ---- [NOTE] ==== Vim, Emacs and Notepad++ are popular text editors often used by developers on Unix-based systems like Linux and macOS or a Windows system. -If you are not familiar with these editors, you may need to search for specific instructions for how to set up your favorite editor with Git. +If you are using another editor, or a 32-bit version, please find specific instructions for how to set up your favorite editor with Git in <>. ==== [WARNING] @@ -81,6 +83,19 @@ You may find, if you don't setup your editor like this, you get into a really co An example on a Windows system may include a prematurely terminated Git operation during a Git initiated edit. ==== +[[_new_default_branch]] +==== Your default branch name + +By default Git will create a branch called _master_ when you create a new repository with `git init`. +From Git version 2.28 onwards, you can set a different name for the initial branch. + +To set _main_ as the default branch name do: + +[source,console] +---- +$ git config --global init.defaultBranch main +---- + ==== Checking Your Settings If you want to check your configuration settings, you can use the `git config --list` command to list all the settings Git can find at that point: @@ -97,7 +112,7 @@ color.diff=auto ... ---- -You may see keys more than once, because Git reads the same key from different files (`/etc/gitconfig` and `~/.gitconfig`, for example). +You may see keys more than once, because Git reads the same key from different files (`[path]/etc/gitconfig` and `~/.gitconfig`, for example). In this case, Git uses the last value for each unique key it sees. You can also check what Git thinks a specific key's value is by typing `git config `:(((git commands, config))) diff --git a/book/01-introduction/sections/help.asc b/book/01-introduction/sections/help.asc index c8017c9dc..68d76a4cf 100644 --- a/book/01-introduction/sections/help.asc +++ b/book/01-introduction/sections/help.asc @@ -1,15 +1,16 @@ [[_git_help]] === Getting Help -If you ever need help while using Git, there are two equivalent ways to get the comprehensive manual page (manpage) help for any of the Git commands: +If you ever need help while using Git, there are three equivalent ways to get the comprehensive manual page (manpage) help for any of the Git commands: [source,console] ---- $ git help +$ git --help $ man git- ---- -For example, you can get the manpage help for the `git config` command by running(((git commands, help))) +For example, you can get the manpage help for the `git config` command by running this:(((git commands, help))) [source,console] ---- @@ -17,30 +18,33 @@ $ git help config ---- These commands are nice because you can access them anywhere, even offline. -If the manpages and this book aren't enough and you need in-person help, you can try the `#git` or `#github` channel on the Freenode IRC server (irc.freenode.net). +If the manpages and this book aren't enough and you need in-person help, you can try the `#git`, `#github`, or `#gitlab` channels on the Libera Chat IRC server, which can be found at https://libera.chat/[^]. These channels are regularly filled with hundreds of people who are all very knowledgeable about Git and are often willing to help.(((IRC))) -In addition, if you don't need the full-blown manpage help, but just need a quick refresher on the available options for a Git command, you can ask for the more concise ``help'' output with the `-h` or `--help` options, as in: +In addition, if you don't need the full-blown manpage help, but just need a quick refresher on the available options for a Git command, you can ask for the more concise "`help`" output with the `-h` option, as in: [source,console] ---- $ git add -h usage: git add [] [--] ... - -n, --dry-run dry run - -v, --verbose be verbose - - -i, --interactive interactive picking - -p, --patch select hunks interactively - -e, --edit edit current diff and apply - -f, --force allow adding otherwise ignored files - -u, --update update tracked files - -N, --intent-to-add record only the fact that the path will be added later - -A, --all add changes from all tracked and untracked files - --ignore-removal ignore paths removed in the working tree (same as --no-all) - --refresh don't add, only refresh the index - --ignore-errors just skip files which cannot be added because of errors - --ignore-missing check if - even missing - files are ignored in dry run - --chmod <(+/-)x> override the executable bit of the listed files + -n, --dry-run dry run + -v, --verbose be verbose + + -i, --interactive interactive picking + -p, --patch select hunks interactively + -e, --edit edit current diff and apply + -f, --force allow adding otherwise ignored files + -u, --update update tracked files + --renormalize renormalize EOL of tracked files (implies -u) + -N, --intent-to-add record only the fact that the path will be added later + -A, --all add changes from all tracked and untracked files + --ignore-removal ignore paths removed in the working tree (same as --no-all) + --refresh don't add, only refresh the index + --ignore-errors just skip files which cannot be added because of errors + --ignore-missing check if - even missing - files are ignored in dry run + --sparse allow updating entries outside of the sparse-checkout cone + --chmod (+|-)x override the executable bit of the listed files + --pathspec-from-file read pathspec from file + --pathspec-file-nul with --pathspec-from-file, pathspec elements are separated with NUL character ---- - diff --git a/book/01-introduction/sections/history.asc b/book/01-introduction/sections/history.asc index dd1d096f9..7ab05fd3b 100644 --- a/book/01-introduction/sections/history.asc +++ b/book/01-introduction/sections/history.asc @@ -3,18 +3,18 @@ As with many great things in life, Git began with a bit of creative destruction and fiery controversy. The Linux kernel is an open source software project of fairly large scope.(((Linux))) -For most of the lifetime of the Linux kernel maintenance (1991–2002), changes to the software were passed around as patches and archived files. +During the early years of the Linux kernel maintenance (1991–2002), changes to the software were passed around as patches and archived files. In 2002, the Linux kernel project began using a proprietary DVCS called BitKeeper.(((BitKeeper))) In 2005, the relationship between the community that developed the Linux kernel and the commercial company that developed BitKeeper broke down, and the tool's free-of-charge status was revoked. This prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux) to develop their own tool based on some of the lessons they learned while using BitKeeper.(((Linus Torvalds))) Some of the goals of the new system were as follows: -* Speed -* Simple design -* Strong support for non-linear development (thousands of parallel branches) -* Fully distributed -* Able to handle large projects like the Linux kernel efficiently (speed and data size) +* Speed +* Simple design +* Strong support for non-linear development (thousands of parallel branches) +* Fully distributed +* Able to handle large projects like the Linux kernel efficiently (speed and data size) Since its birth in 2005, Git has evolved and matured to be easy to use and yet retain these initial qualities. -It's amazingly fast, it's very efficient with large projects, and it has an incredible branching system for non-linear development (See <>). +It's amazingly fast, it's very efficient with large projects, and it has an incredible branching system for non-linear development (see <>). diff --git a/book/01-introduction/sections/installing.asc b/book/01-introduction/sections/installing.asc index 0479b2a6e..d4f6dcbd1 100644 --- a/book/01-introduction/sections/installing.asc +++ b/book/01-introduction/sections/installing.asc @@ -6,9 +6,9 @@ You can either install it as a package or via another installer, or download the [NOTE] ==== -This book was written using Git version *2.0.0*. -Though most of the commands we use should work even in ancient versions of Git, some of them might not or might act slightly differently if you're using an older version. -Since Git is quite excellent at preserving backwards compatibility, any version after 2.0 should work just fine. +This book was written using Git version 2. +Since Git is quite excellent at preserving backwards compatibility, any recent version should work just fine. +Though most of the commands we use should work even in ancient versions of Git, some of them might not or might act slightly differently. ==== ==== Installing on Linux @@ -29,14 +29,14 @@ If you're on a Debian-based distribution, such as Ubuntu, try `apt`: $ sudo apt install git-all ---- -For more options, there are instructions for installing on several different Unix distributions on the Git website, at http://git-scm.com/download/linux[]. +For more options, there are instructions for installing on several different Unix distributions on the Git website, at https://git-scm.com/download/linux[^]. -==== Installing on Mac +==== Installing on macOS -(((Mac, installing))) -There are several ways to install Git on a Mac. +(((macOS, installing))) +There are several ways to install Git on macOS. The easiest is probably to install the Xcode Command Line Tools.(((Xcode))) -On Mavericks (10.9) or above you can do this simply by trying to run 'git' from the Terminal the very first time. +On Mavericks (10.9) or above you can do this simply by trying to run `git` from the Terminal the very first time. [source,console] ---- @@ -46,31 +46,21 @@ $ git --version If you don't have it installed already, it will prompt you to install it. If you want a more up to date version, you can also install it via a binary installer. -A macOS Git installer is maintained and available for download at the Git website, at http://git-scm.com/download/mac[]. +A macOS Git installer is maintained and available for download at the Git website, at https://git-scm.com/download/mac[^]. -.Git macOS Installer. -image::images/git-osx-installer.png[Git macOS installer.] - -You can also install it as part of the GitHub for Mac install. -Their GUI Git tool has an option to install command line tools as well. -You can download that tool from the GitHub for Mac website, at http://mac.github.com[]. +.Git macOS installer +image::images/git-osx-installer.png[Git macOS installer] ==== Installing on Windows There are also a few ways to install Git on Windows.(((Windows, installing))) The most official build is available for download on the Git website. -Just go to http://git-scm.com/download/win[] and the download will start automatically. -Note that this is a project called Git for Windows, which is separate from Git itself; for more information on it, go to https://git-for-windows.github.io/[]. +Just go to https://git-scm.com/download/win[^] and the download will start automatically. +Note that this is a project called Git for Windows, which is separate from Git itself; for more information on it, go to https://gitforwindows.org[^]. -To get an automated installation you can use the https://chocolatey.org/packages/git[Git Chocolatey package]. +To get an automated installation you can use the https://community.chocolatey.org/packages/git[Git Chocolatey package^]. Note that the Chocolatey package is community maintained. -Another easy way to get Git installed is by installing GitHub Desktop. -The installer includes a command line version of Git as well as the GUI. -It also works well with Powershell, and sets up solid credential caching and sane CRLF settings.(((Powershell)))(((CRLF)))(((credential caching))) -We'll learn more about those things a little later, but suffice it to say they're things you want. -You can download this from the https://desktop.github.com/[GitHub Desktop website]. - ==== Installing from Source Some people may instead find it useful to install Git from source, because you'll get the most recent version. @@ -87,7 +77,7 @@ $ sudo apt-get install dh-autoreconf libcurl4-gnutls-dev libexpat1-dev \ gettext libz-dev libssl-dev ---- -In order to be able to add the documentation in various formats (doc, html, info), these additional dependencies are required (Note: users of RHEL and RHEL-derivatives like CentOS and Scientific Linux will have to https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F[enable the EPEL repository] to download the `docbook2X` package): +In order to be able to add the documentation in various formats (doc, html, info), these additional dependencies are required: [source,console] ---- @@ -95,6 +85,11 @@ $ sudo dnf install asciidoc xmlto docbook2X $ sudo apt-get install asciidoc xmlto docbook2x ---- +[NOTE] +==== +Users of RHEL and RHEL-derivatives like CentOS and Scientific Linux will have to https://docs.fedoraproject.org/en-US/epel/#how_can_i_use_these_extra_packages[enable the EPEL repository^] to download the `docbook2X` package. +==== + If you're using a Debian-based distribution (Debian/Ubuntu/Ubuntu-derivatives), you also need the `install-info` package: [source,console] @@ -107,10 +102,9 @@ If you're using a RPM-based distribution (Fedora/RHEL/RHEL-derivatives), you als [source,console] ---- $ sudo dnf install getopt -$ sudo apt-get install getopt ---- -Additionally, if you're using Fedora/RHEL/RHEL-derivatives, you need to do this +Additionally, if you're using Fedora/RHEL/RHEL-derivatives, you need to do this: [source,console] ---- @@ -120,15 +114,15 @@ $ sudo ln -s /usr/bin/db2x_docbook2texi /usr/bin/docbook2x-texi due to binary name differences. When you have all the necessary dependencies, you can go ahead and grab the latest tagged release tarball from several places. -You can get it via the kernel.org site, at https://www.kernel.org/pub/software/scm/git[], or the mirror on the GitHub website, at https://github.com/git/git/releases[]. +You can get it via the kernel.org site, at https://www.kernel.org/pub/software/scm/git[^], or the mirror on the GitHub website, at https://github.com/git/git/tags[^]. It's generally a little clearer what the latest version is on the GitHub page, but the kernel.org page also has release signatures if you want to verify your download. Then, compile and install: [source,console] ---- -$ tar -zxf git-2.0.0.tar.gz -$ cd git-2.0.0 +$ tar -zxf git-2.8.0.tar.gz +$ cd git-2.8.0 $ make configure $ ./configure --prefix=/usr $ make all doc info @@ -139,5 +133,5 @@ After this is done, you can also get Git via Git itself for updates: [source,console] ---- -$ git clone git://git.kernel.org/pub/scm/git/git.git +$ git clone https://git.kernel.org/pub/scm/git/git.git ---- diff --git a/book/01-introduction/sections/basics.asc b/book/01-introduction/sections/what-is-git.asc similarity index 86% rename from book/01-introduction/sections/basics.asc rename to book/01-introduction/sections/what-is-git.asc index cd08d19bd..466201b23 100644 --- a/book/01-introduction/sections/basics.asc +++ b/book/01-introduction/sections/what-is-git.asc @@ -1,4 +1,5 @@ -=== Git Basics +[[what_is_git_section]] +=== What is Git? So, what is Git in a nutshell? This is an important section to absorb, because if you understand what Git is and the fundamentals of how it works, then using Git effectively will probably be much easier for you. @@ -9,10 +10,10 @@ Even though Git's user interface is fairly similar to these other VCSs, Git stor The major difference between Git and any other VCS (Subversion and friends included) is the way Git thinks about its data. Conceptually, most other systems store information as a list of file-based changes. -These other systems (CVS, Subversion, Perforce, Bazaar, and so on) think of the information they store as a set of files and the changes made to each file over time (this is commonly described as _delta-based_ version control). +These other systems (CVS, Subversion, Perforce, and so on) think of the information they store as a set of files and the changes made to each file over time (this is commonly described as _delta-based_ version control). -.Storing data as changes to a base version of each file. -image::images/deltas.png[Storing data as changes to a base version of each file.] +.Storing data as changes to a base version of each file +image::images/deltas.png[Storing data as changes to a base version of each file] Git doesn't think of or store its data this way. Instead, Git thinks of its data more like a series of snapshots of a miniature filesystem. @@ -20,8 +21,8 @@ With Git, every time you commit, or save the state of your project, Git basicall To be efficient, if files have not changed, Git doesn't store the file again, just a link to the previous identical file it has already stored. Git thinks about its data more like a *stream of snapshots*. -.Storing data as snapshots of the project over time. -image::images/snapshots.png[Git stores data as snapshots of the project over time.] +.Storing data as snapshots of the project over time +image::images/snapshots.png[Git stores data as snapshots of the project over time] This is an important distinction between Git and nearly all other VCSs. It makes Git reconsider almost every aspect of version control that most other systems copied from the previous generation. @@ -42,12 +43,12 @@ This also means that there is very little you can't do if you're offline or off If you get on an airplane or a train and want to do a little work, you can commit happily (to your _local_ copy, remember?) until you get to a network connection to upload. If you go home and can't get your VPN client working properly, you can still work. In many other systems, doing so is either impossible or painful. -In Perforce, for example, you can't do much when you aren't connected to the server; and in Subversion and CVS, you can edit files, but you can't commit changes to your database (because your database is offline). +In Perforce, for example, you can't do much when you aren't connected to the server; in Subversion and CVS, you can edit files, but you can't commit changes to your database (because your database is offline). This may not seem like a huge deal, but you may be surprised what a big difference it can make. ==== Git Has Integrity -Everything in Git is check-summed before it is stored and is then referred to by that checksum. +Everything in Git is checksummed before it is stored and is then referred to by that checksum. This means it's impossible to change the contents of any file or directory without Git knowing about it. This functionality is built into Git at the lowest levels and is integral to its philosophy. You can't lose information in transit or get file corruption without Git being able to detect it. @@ -76,25 +77,25 @@ For a more in-depth look at how Git stores its data and how you can recover data ==== The Three States Pay attention now -- here is the main thing to remember about Git if you want the rest of your learning process to go smoothly. -Git has three main states that your files can reside in: _committed_, _modified_, and _staged_: +Git has three main states that your files can reside in: _modified_, _staged_, and _committed_: -* Committed means that the data is safely stored in your local database. * Modified means that you have changed the file but have not committed it to your database yet. * Staged means that you have marked a modified file in its current version to go into your next commit snapshot. +* Committed means that the data is safely stored in your local database. -This leads us to the three main sections of a Git project: the Git directory, the working tree, and the staging area. - -.Working tree, staging area, and Git directory. -image::images/areas.png["Working tree, staging area, and Git directory."] +This leads us to the three main sections of a Git project: the working tree, the staging area, and the Git directory. -The Git directory is where Git stores the metadata and object database for your project. -This is the most important part of Git, and it is what is copied when you _clone_ a repository from another computer. +.Working tree, staging area, and Git directory +image::images/areas.png["Working tree, staging area, and Git directory"] The working tree is a single checkout of one version of the project. These files are pulled out of the compressed database in the Git directory and placed on disk for you to use or modify. The staging area is a file, generally contained in your Git directory, that stores information about what will go into your next commit. -Its technical name in Git parlance is the ``index'', but the phrase ``staging area'' works just as well. +Its technical name in Git parlance is the "`index`", but the phrase "`staging area`" works just as well. + +The Git directory is where Git stores the metadata and object database for your project. +This is the most important part of Git, and it is what is copied when you _clone_ a repository from another computer. The basic Git workflow goes something like this: @@ -102,7 +103,7 @@ The basic Git workflow goes something like this: 2. You selectively stage just those changes you want to be part of your next commit, which adds _only_ those changes to the staging area. 3. You do a commit, which takes the files as they are in the staging area and stores that snapshot permanently to your Git directory. -If a particular version of a file is in the Git directory, it's considered committed. -If it has been modified and was added to the staging area, it is staged. -And if it was changed since it was checked out but has not been staged, it is modified. +If a particular version of a file is in the Git directory, it's considered _committed_. +If it has been modified and was added to the staging area, it is _staged_. +And if it was changed since it was checked out but has not been staged, it is _modified_. In <>, you'll learn more about these states and how you can either take advantage of them or skip the staged part entirely. diff --git a/book/02-git-basics/sections/aliases.asc b/book/02-git-basics/sections/aliases.asc index 2c9c7c020..5d6d117cd 100644 --- a/book/02-git-basics/sections/aliases.asc +++ b/book/02-git-basics/sections/aliases.asc @@ -2,8 +2,8 @@ === Git Aliases (((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. +Before we move on to the next chapter, we want to introduce a feature that can make your Git experience simpler, easier, and more familiar: aliases. +For clarity's sake, we won't be using them anywhere else in this book, but if you go on to use Git with any regularity, aliases are something you should know about. Git doesn't automatically 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`.(((git commands, config))) @@ -53,7 +53,7 @@ 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 ---- diff --git a/book/02-git-basics/sections/getting-a-repository.asc b/book/02-git-basics/sections/getting-a-repository.asc index c3c29ee95..3b69efd08 100644 --- a/book/02-git-basics/sections/getting-a-repository.asc +++ b/book/02-git-basics/sections/getting-a-repository.asc @@ -18,7 +18,7 @@ for Linux: ---- $ cd /home/user/my_project ---- -for Mac: +for macOS: [source,console] ---- $ cd /Users/user/my_project @@ -26,7 +26,7 @@ $ cd /Users/user/my_project for Windows: [source,console] ---- -$ cd /c/user/my_project +$ cd C:/Users/user/my_project ---- and type: @@ -38,7 +38,7 @@ $ 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 <> for more information about exactly what files are contained in the `.git` directory you just created.)(((git commands, init))) +See <> for more information about exactly what files are contained in the `.git` directory you just created.(((git commands, init))) 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 `git commit`: @@ -47,7 +47,7 @@ You can accomplish that with a few `git add` commands that specify the files you ---- $ git add *.c $ git add LICENSE -$ git commit -m 'initial project version' +$ git commit -m 'Initial project version' ---- We'll go over what these commands do in just a minute. @@ -57,7 +57,7 @@ At this point, you have a Git repository with tracked files and an initial commi ==== 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". +If you're familiar with other VCSs such as Subversion, you'll notice that the command is "clone" and not "checkout". This is an important distinction -- instead of getting just a working copy, Git receives a full copy of nearly all data that the server has. Every version of every file for the history of the project is pulled down by default when you run `git clone`. In fact, if your server disk gets corrupted, you can often use nearly 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 <> for more details). @@ -73,7 +73,7 @@ $ git clone https://github.com/libgit2/libgit2 That creates a directory named `libgit2`, 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 `libgit2` directory that was just created, 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 `libgit2`, you can specify that as the next command-line option: +If you want to clone the repository into a directory named something other than `libgit2`, you can specify the new directory name as an additional argument: [source,console] ---- diff --git a/book/02-git-basics/sections/recording-changes.asc b/book/02-git-basics/sections/recording-changes.asc index a778c9225..8bcd785fe 100644 --- a/book/02-git-basics/sections/recording-changes.asc +++ b/book/02-git-basics/sections/recording-changes.asc @@ -4,7 +4,7 @@ At this point, you should have a _bona fide_ Git repository on your local machin Typically, you'll want to start making changes and committing snapshots of those changes into your repository each time the project reaches a state you want to record. Remember that each file in your working directory can be in one of two states: _tracked_ or _untracked_. -Tracked files are files that were in the last snapshot; they can be unmodified, modified, or staged. +Tracked files are files that were in the last snapshot, as well as any newly staged files; they can be unmodified, modified, or staged. In short, tracked files are files that Git knows about. Untracked files are everything else -- any files in your working directory that were not in your last snapshot and are not in your staging area. @@ -13,8 +13,8 @@ When you first clone a repository, all of your files will be tracked and unmodif As you edit files, Git sees them as modified, because you've changed them since your last commit. As you work, you selectively stage these modified files and then commit all those staged changes, and the cycle repeats. -.The lifecycle of the status of your files. -image::images/lifecycle.png[The lifecycle of the status of your files.] +.The lifecycle of the status of your files +image::images/lifecycle.png[The lifecycle of the status of your files] [[_checking_status]] ==== Checking the Status of Your Files @@ -27,15 +27,24 @@ If you run this command directly after a clone, you should see something like th $ git status On branch master Your branch is up-to-date with 'origin/master'. -nothing to commit, working directory clean +nothing to commit, working tree clean ---- -This means you have a clean working directory -- in other words, none of your tracked files are modified. +This means you have a clean working directory; in other words, none of your tracked files are modified. Git also doesn't see any untracked files, or they would be listed here. Finally, the command tells you which branch you're on and informs you that it has not diverged from the same branch on the server. -For now, that branch is always ``master'', which is the default; you won't worry about it here. +For now, that branch is always `master`, which is the default; you won't worry about it here. <> will go over branches and references in detail. +[NOTE] +==== +GitHub changed the default branch name from `master` to `main` in mid-2020, and other Git hosts followed suit. +So you may find that the default branch name in some newly created repositories is `main` and not `master`. +In addition, the default branch name can be changed (as you have seen in <>), so you may see a different name for the default branch. + +However, Git itself still uses `master` as the default, so we will use it throughout the book. +==== + 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: @@ -53,8 +62,8 @@ Untracked files: 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. +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), and which hasn't yet been staged; 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. @@ -77,14 +86,14 @@ $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed: - (use "git reset HEAD ..." to unstage) + (use "git restore --staged ..." 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 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 subsequent historical snapshot. You may recall that when you ran `git init` earlier, you then ran `git add ` -- that was to begin tracking files in your directory.(((git commands, init)))(((git commands, add))) 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. @@ -111,10 +120,10 @@ Changes not staged for commit: ---- -The `CONTRIBUTING.md` file appears under a section named ``Changes not staged for commit'' -- which means that a file that is tracked has been modified in the working directory but not yet staged. +The `CONTRIBUTING.md` file appears under a section named "`Changes 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. `git add` is 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. -It may be helpful to think of it more as ``add precisely this content to the next commit'' rather than ``add this file to the project''.(((git commands, add))) +It may be helpful to think of it more as "`add precisely this content to the next commit`" rather than "`add this file to the project`".(((git commands, add))) Let's run `git add` now to stage the `CONTRIBUTING.md` file, and then run `git status` again: [source,console] @@ -193,7 +202,7 @@ M lib/simplegit.rb ---- New files that aren't tracked have a `??` next to them, new files that have been added to the staging area have an `A`, modified files have an `M` and so on. -There are two columns to the output - the left-hand column indicates the status of the staging area and the right-hand column indicates the status of the working tree. +There are two columns to the output -- the left-hand column indicates the status of the staging area and the right-hand column indicates the status of the working tree. So for example in that output, the `README` file is modified in the working directory but not yet staged, while the `lib/simplegit.rb` file is modified and staged. The `Rakefile` was modified, staged and then modified again, so there are changes to it that are both staged and unstaged. @@ -212,21 +221,21 @@ $ 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 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 whose names 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 for your new repository 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: -* Blank lines or lines starting with `#` are ignored. -* Standard glob patterns work, and will be applied recursively throughout the entire working tree. -* You can start patterns with a forward slash (`/`) to avoid recursivity. -* You can end patterns with a forward slash (`/`) to specify a directory. -* You can negate a pattern by starting it with an exclamation point (`!`). +* Blank lines or lines starting with `#` are ignored. +* Standard glob patterns work, and will be applied recursively throughout the entire working tree. +* You can start patterns with a forward slash (`/`) to avoid recursivity. +* 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). +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: @@ -242,7 +251,7 @@ Here is another example `.gitignore` file: # only ignore the TODO file in the current directory, not subdir/TODO /TODO -# ignore all files in the build/ directory +# ignore all files in any directory named build build/ # ignore doc/notes.txt, but not doc/server/arch.txt @@ -254,7 +263,7 @@ doc/**/*.pdf [TIP] ==== -GitHub maintains a fairly comprehensive list of good `.gitignore` file examples for dozens of projects and languages at https://github.com/github/gitignore[] if you want a starting point for your project. +GitHub maintains a fairly comprehensive list of good `.gitignore` file examples for dozens of projects and languages at https://github.com/github/gitignore[^] if you want a starting point for your project. ==== [NOTE] @@ -262,7 +271,7 @@ GitHub maintains a fairly comprehensive list of good `.gitignore` file examples In the simple case, a repository might have a single `.gitignore` file in its root directory, which applies recursively to the entire repository. However, it is also possible to have additional `.gitignore` files in subdirectories. The rules in these nested `.gitignore` files apply only to the files under the directory where they are located. -(The Linux kernel source repository has 206 `.gitignore` files.) +The Linux kernel source repository has 206 `.gitignore` files. It is beyond the scope of this book to get into the details of multiple `.gitignore` files; see `man gitignore` for the details. ==== @@ -420,7 +429,11 @@ $ 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 <>).(((editor, changing default)))(((git commands, config))) + +[NOTE] +==== +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 <>.(((editor, changing default)))(((git commands, config))) +==== The editor displays the following text (this example is a Vim screen): @@ -444,16 +457,21 @@ The editor displays the following text (this example is a Vim screen): 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 changes you're committing.) + +[NOTE] +==== +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 changes you're committing. +==== + 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: [source,console] ---- -$ git commit -m "Story 182: Fix benchmarks for speed" -[master 463dc4f] Story 182: Fix benchmarks for speed +$ 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 ---- @@ -484,8 +502,8 @@ Changes not staged for commit: modified: CONTRIBUTING.md 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 +$ git commit -a -m 'Add new benchmarks' +[master 83e38c7] Add new benchmarks 1 file changed, 5 insertions(+), 0 deletions(-) ---- @@ -500,7 +518,7 @@ This is convenient, but be careful; sometimes this flag will cause you to includ 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 ``Changes not staged for commit'' (that is, _unstaged_) area of your `git status` output: +If you simply remove the file from your working directory, it shows up under the "`Changes not staged for commit`" (that is, _unstaged_) area of your `git status` output: [source,console] ---- @@ -533,7 +551,7 @@ Changes to be committed: ---- The next time you commit, the file will be gone and no longer tracked. -If you modified the file and added it to the staging area already, you must force the removal with the `-f` option. +If you modified the file or had already added it to the staging area, 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. @@ -570,7 +588,7 @@ This command removes all files whose names end with a `~`. ==== Moving Files (((files, moving))) -Unlike many other VCS systems, Git doesn't explicitly track file movement. +Unlike many other VCSs, 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. @@ -608,4 +626,4 @@ $ 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 `git mv` is one command instead of three -- it's a convenience function. -More importantly, you can use any tool you like to rename a file, and address the add/rm later, before you commit. +More importantly, you can use any tool you like to rename a file, and address the `add`/`rm` later, before you commit. diff --git a/book/02-git-basics/sections/remotes.asc b/book/02-git-basics/sections/remotes.asc index a150fbf6b..80e98250a 100644 --- a/book/02-git-basics/sections/remotes.asc +++ b/book/02-git-basics/sections/remotes.asc @@ -11,8 +11,8 @@ In this section, we'll cover some of these remote-management skills. [NOTE] .Remote repositories can be on your local machine. ==== -It is entirely possible that you can be working with a ``remote'' repository that is, in fact, on the same host you are. -The word ``remote'' does not necessarily imply that the repository is somewhere else on the network or Internet, only that it is elsewhere. +It is entirely possible that you can be working with a "`remote`" repository that is, in fact, on the same host you are. +The word "`remote`" does not necessarily imply that the repository is somewhere else on the network or Internet, only that it is elsewhere. Working with such a remote repository would still involve all the standard pushing, pulling and fetching operations as with any other remote. ==== @@ -87,7 +87,7 @@ pb https://github.com/paulboone/ticgit (fetch) pb https://github.com/paulboone/ticgit (push) ---- -Now you can use the string `pb` on the command line in lieu of the whole URL. +Now you can use the string `pb` on the command line instead 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,console] @@ -102,8 +102,8 @@ From https://github.com/paulboone/ticgit * [new branch] ticgit -> pb/ticgit ---- -Paul's master branch is now 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. -(We'll go over what branches are and how to use them in much more detail in <>.) +Paul's `master` branch is now 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. +We'll go over what branches are and how to use them in much more detail in <>. [[_fetching_and_pulling]] ==== Fetching and Pulling from Your Remotes @@ -118,21 +118,33 @@ $ git fetch 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. -If you clone a repository, the command automatically adds that remote repository under the name ``origin''. +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 `git fetch` command only downloads 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 your current branch is set up to track a remote branch (see the next section and <> for more information), you can use the `git pull` command to automatically fetch and then merge that remote branch into your current branch.(((git commands, pull))) -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. +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. +[NOTE] +==== +From Git version 2.27 onward, `git pull` will give a warning if the `pull.rebase` variable is not set. +Git will keep warning you until you set the variable. + +If you want the default behavior of Git (fast-forward if possible, else create a merge commit): +`git config --global pull.rebase "false"` + +If you want to rebase when pulling: +`git config --global pull.rebase "true"` +==== + [[_pushing_remotes]] ==== 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 `.(((git commands, push))) -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 any commits you've done back up to the server: +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 any commits you've done back up to the server: [source,console] ---- @@ -167,7 +179,7 @@ $ git remote show origin ---- 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. +The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge the remote's `master` branch into the local one after it has been fetched. It also lists all the remote references it has pulled down. That is a simple example you're likely to encounter. diff --git a/book/02-git-basics/sections/tagging.asc b/book/02-git-basics/sections/tagging.asc index 804b29548..34604c573 100644 --- a/book/02-git-basics/sections/tagging.asc +++ b/book/02-git-basics/sections/tagging.asc @@ -2,27 +2,27 @@ === Tagging (((tags))) -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. +Like most VCSs, Git has the ability to tag specific points in a repository's history as being important. +Typically, people use this functionality to mark release points (`v1.0`, `v2.0` and so on). +In this section, you'll learn how to list existing tags, how to create and delete tags, and what the different types of tags are. ==== Listing Your Tags -Listing the available tags in Git is straightforward. +Listing the existing tags in Git is straightforward. Just type `git tag` (with optional `-l` or `--list`):(((git commands, tag))) [source,console] ---- $ git tag -v0.1 -v1.3 +v1.0 +v2.0 ---- -This command lists the tags in alphabetical order; the order in which they appear has no real importance. +This command lists the tags in alphabetical order; the order in which they are displayed has no real importance. You can also search for tags that match 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: +If you're interested only in looking at the 1.8.5 series, you can run this: [source,console] ---- @@ -91,7 +91,7 @@ commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + Change version number ---- That shows the tagger information, the date the commit was tagged, and the annotation message before showing the commit information. @@ -124,7 +124,7 @@ commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + Change version number ---- ==== Tagging Later @@ -136,18 +136,18 @@ Suppose your commit history looks like this: ---- $ git log --pretty=oneline 15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment' -a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support -0d52aaab4479697da7686c15f77a3d64d9165190 one more thing +a6b4c97498bd301d84096da251c98a07c7723e65 Create 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 +0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc Add commit function +4682c3261057305bdd616e23b64b0857d832627b Add todo file +166ae0c4d3f420721acbb115cc33848dfcc2121a Create write support +9fceb02d0ae598e95dc970b74767f19372d61af8 Update rakefile +964f16d36dfccde844893cac5b347e7b3d44abbc Commit the todo +8a5cbc430f1a9c3d00faaeffd07798508422908a Update readme ---- -Now, suppose you forgot to tag the project at v1.2, which was at the ``updated rakefile'' commit. +Now, suppose you forgot to tag the project at v1.2, which was at the "`Update 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: @@ -178,7 +178,7 @@ commit 9fceb02d0ae598e95dc970b74767f19372d61af8 Author: Magnus Chacon Date: Sun Apr 27 20:43:35 2008 -0700 - updated rakefile + Update rakefile ... ---- @@ -217,32 +217,78 @@ 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. +[NOTE] +.`git push` pushes both types of tags +==== +`git push --tags` will push both lightweight and annotated tags. +There is currently no option to push only lightweight tags, but if you use `git push --follow-tags` only annotated tags will be pushed to the remote. +==== + +==== Deleting Tags + +To delete a tag on your local repository, you can use `git tag -d `. +For example, we could remove our lightweight tag above as follows: + +[source,console] +---- +$ git tag -d v1.4-lw +Deleted tag 'v1.4-lw' (was e7d5add) +---- + +Note that this does not remove the tag from any remote servers. +There are two common variations for deleting a tag from a remote server. + +The first variation is `git push :refs/tags/`: + +[source,console] +---- +$ git push origin :refs/tags/v1.4-lw +To /git@github.com:schacon/simplegit.git + - [deleted] v1.4-lw +---- + +The way to interpret the above is to read it as the null value before the colon is being pushed to the remote tag name, effectively deleting it. + +The second (and more intuitive) way to delete a remote tag is with: + +[source,console] +---- +$ git push origin --delete +---- + ==== Checking out Tags -If you want to view the versions of files a tag is pointing to, you can do a git checkout, though this puts your repository in ``detached HEAD'' state, which has some ill side effects: +If you want to view the versions of files a tag is pointing to, you can do a `git checkout` of that tag, although this puts your repository in "`detached HEAD`" state, which has some ill side effects: [source,console] ---- -$ git checkout 2.0.0 -Note: checking out '2.0.0'. +$ git checkout v2.0.0 +Note: switching to 'v2.0.0'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout. If you want to create a new branch to retain commits you create, you may -do so (now or later) by using -b with the checkout command again. Example: +do so (now or later) by using -c with the switch command. Example: + + git switch -c + +Or undo this operation with: + + git switch - - git checkout -b +Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 99ada87... Merge pull request #89 from schacon/appendix-final -$ git checkout 2.0-beta-0.1 +$ git checkout v2.0-beta-0.1 Previous HEAD position was 99ada87... Merge pull request #89 from schacon/appendix-final -HEAD is now at df3f601... add atlas.json and cover image +HEAD is now at df3f601... Add atlas.json and cover image ---- -In ``detached HEAD'' state, if you make changes and then create a commit, the tag will stay the same, but your new commit won't belong to any branch and will be unreachable, except by the exact commit hash. Thus, if you need to make changes -- say you're fixing a bug on an older version, for instance -- you will generally want to create a branch: +In "`detached HEAD`" state, if you make changes and then create a commit, the tag will stay the same, but your new commit won't belong to any branch and will be unreachable, except by the exact commit hash. +Thus, if you need to make changes -- say you're fixing a bug on an older version, for instance -- you will generally want to create a branch: [source,console] ---- diff --git a/book/02-git-basics/sections/undoing.asc b/book/02-git-basics/sections/undoing.asc index dd75fb7f7..0c815dde8 100644 --- a/book/02-git-basics/sections/undoing.asc +++ b/book/02-git-basics/sections/undoing.asc @@ -24,7 +24,7 @@ As an example, if you commit and then realize you forgot to stage the changes in [source,console] ---- -$ git commit -m 'initial commit' +$ git commit -m 'Initial commit' $ git add forgotten_file $ git commit --amend ---- @@ -36,7 +36,14 @@ You end up with a single commit -- the second commit replaces the results of the It's important to understand that when you're amending your last commit, you're not so much fixing it as _replacing_ it entirely with a new, improved commit that pushes the old commit out of the way and puts the new commit in its place. Effectively, it's as if the previous commit never happened, and it won't show up in your repository history. -The obvious value to amending commits is to make minor improvements to your last commit, without cluttering your repository history with commit messages of the form, ``Oops, forgot to add a file'' or ``Darn, fixing a typo in last commit''. +The obvious value to amending commits is to make minor improvements to your last commit, without cluttering your repository history with commit messages of the form, "`Oops, forgot to add a file`" or "`Darn, fixing a typo in last commit`". +==== + +[NOTE] +==== +Only amend commits that are still local and have not been pushed somewhere. +Amending previously pushed commits and force pushing the branch will cause problems for your collaborators. +For more on what happens when you do this and how to recover if you're on the receiving end read <<_rebase_peril>>. ==== [[_unstaging]] @@ -60,7 +67,7 @@ Changes to be committed: modified: CONTRIBUTING.md ---- -Right below the ``Changes to be committed'' text, it says use `git reset HEAD ...` to unstage. +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 `CONTRIBUTING.md` file: [source,console] @@ -129,9 +136,9 @@ You can see that the changes have been reverted. [IMPORTANT] ===== -It's important to understand that `git checkout -- ` is a dangerous command. -Any changes you made to that file are gone -- Git just copied another file over it. -Don't ever use this command unless you absolutely know that you don't want the file. +It's important to understand that `git checkout \-- ` is a dangerous command. +Any local changes you made to that file are gone -- Git just replaced that file with the last staged or committed version. +Don't ever use this command unless you absolutely know that you don't want those unsaved local changes. ===== If you would like to keep the changes you've made to that file but still need to get it out of the way for now, we'll go over stashing and branching in <>; these are generally better ways to go. @@ -139,3 +146,90 @@ If you would like to keep the changes you've made to that file but still need to 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_git_restore]] +==== Undoing things with git restore + +Git version 2.23.0 introduced a new command: `git restore`. +It's basically an alternative to `git reset` which we just covered. +From Git version 2.23.0 onwards, Git will use `git restore` instead of `git reset` for many undo operations. + +Let's retrace our steps, and undo things with `git restore` instead of `git reset`. + +===== Unstaging a Staged File with git restore + +The next two sections demonstrate how to work with your staging area and working directory changes with `git restore`. +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: + +[source,console] +---- +$ git add * +$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + modified: CONTRIBUTING.md + renamed: README.md -> README + +---- + +Right below the "`Changes to be committed`" text, it says use `git restore --staged ...` to unstage. +So, let's use that advice to unstage the `CONTRIBUTING.md` file: + +[source,console] +---- +$ git restore --staged CONTRIBUTING.md +$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + renamed: README.md -> README + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: CONTRIBUTING.md + +---- + +The `CONTRIBUTING.md` file is modified but once again unstaged. + +===== Unmodifying a Modified File with git restore + +What if you realize that you don't want to keep your changes to the `CONTRIBUTING.md` 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: + +[source,console] +---- +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: CONTRIBUTING.md + +---- + +It tells you pretty explicitly how to discard the changes you've made. +Let's do what it says: + +[source,console] +---- +$ git restore CONTRIBUTING.md +$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + renamed: README.md -> README + +---- + +[IMPORTANT] +===== +It's important to understand that `git restore ` is a dangerous command. +Any local changes you made to that file are gone -- Git just replaced that file with the last staged or committed version. +Don't ever use this command unless you absolutely know that you don't want those unsaved local changes. +===== diff --git a/book/02-git-basics/sections/viewing-history.asc b/book/02-git-basics/sections/viewing-history.asc index 8c5be5e49..440c7f250 100644 --- a/book/02-git-basics/sections/viewing-history.asc +++ b/book/02-git-basics/sections/viewing-history.asc @@ -4,8 +4,8 @@ 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''. -To get the project, run +These examples use a very simple project called "`simplegit`". +To get the project, run: [source,console] ---- @@ -21,22 +21,22 @@ commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + Change version number commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 Author: Scott Chacon Date: Sat Mar 15 16:40:33 2008 -0700 - removed unnecessary test + Remove unnecessary test commit a11bef06a3f659402fe7563abf99ad00de2209e6 Author: Scott Chacon Date: Sat Mar 15 10:31:28 2008 -0700 - first commit + Initial 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. +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 email, 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. @@ -52,7 +52,7 @@ commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + Change version number diff --git a/Rakefile b/Rakefile index a874b73..8f94139 100644 @@ -72,7 +72,7 @@ commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 Author: Scott Chacon Date: Sat Mar 15 16:40:33 2008 -0700 - removed unnecessary test + Remove unnecessary test diff --git a/lib/simplegit.rb b/lib/simplegit.rb index a0a60ae..47c6340 100644 @@ -101,7 +101,7 @@ commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon Date: Mon Mar 17 21:52:11 2008 -0700 - changed the version number + Change version number Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) @@ -110,7 +110,7 @@ commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 Author: Scott Chacon Date: Sat Mar 15 16:40:33 2008 -0700 - removed unnecessary test + Remove unnecessary test lib/simplegit.rb | 5 ----- 1 file changed, 5 deletions(-) @@ -119,7 +119,7 @@ commit a11bef06a3f659402fe7563abf99ad00de2209e6 Author: Scott Chacon Date: Sat Mar 15 10:31:28 2008 -0700 - first commit + Initial commit README | 6 ++++++ Rakefile | 23 +++++++++++++++++++++++ @@ -132,51 +132,51 @@ 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: +A few prebuilt option values are available for you to use. +The `oneline` value for this 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` values show the output in roughly the same format but with less or more information, respectively: [source,console] ---- $ git log --pretty=oneline -ca82a6dff817ec66f44342007202690a93763949 changed the version number -085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 removed unnecessary test -a11bef06a3f659402fe7563abf99ad00de2209e6 first commit +ca82a6dff817ec66f44342007202690a93763949 Change version number +085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 Remove unnecessary test +a11bef06a3f659402fe7563abf99ad00de2209e6 Initial commit ---- -The most interesting option is `format`, which allows you to specify your own log output format. +The most interesting option value 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:(((log formatting))) [source,console] ---- $ git log --pretty=format:"%h - %an, %ar : %s" -ca82a6d - Scott Chacon, 6 years ago : changed the version number -085bb3b - Scott Chacon, 6 years ago : removed unnecessary test -a11bef0 - Scott Chacon, 6 years ago : first commit +ca82a6d - Scott Chacon, 6 years ago : Change version number +085bb3b - Scott Chacon, 6 years ago : Remove unnecessary test +a11bef0 - Scott Chacon, 6 years ago : Initial commit ---- -<> lists some of the more useful options that `format` takes. +<> lists some of the more useful specifiers that `format` takes. [[pretty_format]] -.Useful options for `git log --pretty=format` +.Useful specifiers 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 email -| `%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 +| Specifier | 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 email +| `%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_. @@ -184,28 +184,28 @@ The author is the person who originally wrote the work, whereas the committer is 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 <>. -The `oneline` and `format` options are particularly useful with another `log` option called `--graph`. +The `oneline` and `format` option values are particularly useful with another `log` option called `--graph`. This option adds a nice little ASCII graph showing your branch and merge history: [source,console] ---- $ git log --pretty=format:"%h %s" --graph -* 2d3acf9 ignore errors from SIGCHLD on trap -* 5e3ee11 Merge branch 'master' of git://github.com/dustin/grit +* 2d3acf9 Ignore errors from SIGCHLD on trap +* 5e3ee11 Merge branch 'master' of https://github.com/dustin/grit.git |\ -| * 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 +| * 420eac9 Add 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 +* d6016bc Require time for xmlschema * 11d191e Merge branch 'defunkt' into local ---- This type of output will become more interesting as we go through branching and merging in the next chapter. 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. +<> 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` @@ -214,19 +214,19 @@ Those are only some simple output-formatting options to `git log` -- there are m | 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. +| `--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. +| `--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). +| `--pretty` | Show commits in an alternate format. Option values include `oneline`, `short`, `full`, `fuller`, and `format` (where you specify your own format). | `--oneline` | Shorthand for `--pretty=oneline --abbrev-commit` used together. |================================ ==== 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. +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 displays 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. @@ -246,13 +246,10 @@ The `--author` option allows you to filter on a specific author, and the `--grep [NOTE] ==== -You can specify more than one instance of both the `--author` and `--grep` search criteria, which -will limit the commit output to commits that match _any_ of the `--author` patterns and _any_ -of the `--grep` patterns; however, adding the `--all-match` option further limits the output to -just those commits that match _all_ `--grep` patterns. +You can specify more than one instance of both the `--author` and `--grep` search criteria, which will limit the commit output to commits that match _any_ of the `--author` patterns and _any_ of the `--grep` patterns; however, adding the `--all-match` option further limits the output to just those commits that match _all_ `--grep` patterns. ==== -Another really helpful filter is the `-S` option (colloquially referred to as Git's ``pickaxe'' option), which takes a string and shows only those commits that changed the number of occurrences of that string. +Another really helpful filter is the `-S` option (colloquially referred to as Git's "`pickaxe`" option), which takes a string and shows only those commits that changed the number of occurrences of that string. For instance, if you wanted to find the last commit that added or removed a reference to a specific function, you could call: [source,console] @@ -262,7 +259,12 @@ $ git log -S function_name 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. +This is always the last option and is generally preceded by double dashes (`--`) to separate the paths from the options: + +[source,console] +---- +$ git log -- path/to/file +---- In <> we'll list these and a few other common options for your reference. @@ -271,20 +273,20 @@ In <> we'll list these and a few other common options for your re [cols="2,4",options="header"] |================================ | Option | Description -| `-` | Show only the last n commits +| `-` | 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. -| `--grep` | Only show commits with a commit message containing the string -| `-S` | Only show commits adding or removing code matching the string +| `--grep` | Only show commits with a commit message containing the string. +| `-S` | Only show commits adding or removing code matching the string. |================================ For example, if you want to see which commits modifying test files in the Git source code history were committed by Junio Hamano in the month of October 2008 and are not merge commits, you can run something like this:(((log filtering))) [source,console] ---- -$ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \ +$ git log --pretty="%h - %s" --author='Junio C Hamano' --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 @@ -300,5 +302,5 @@ Of the nearly 40,000 commits in the Git source code history, this command shows .Preventing the display of merge commits ==== Depending on the workflow used in your repository, it's possible that a sizable percentage of the commits in your log history are just merge commits, which typically aren't very informative. -To prevent the display of merge commits cluttering up your log history, simply add the log option `--no-merges`. +To prevent the display of merge commits cluttering up your log history, simply add the `log` option `--no-merges`. ==== diff --git a/book/03-git-branching/sections/basic-branching-and-merging.asc b/book/03-git-branching/sections/basic-branching-and-merging.asc index 23c06ff5e..a894b6702 100644 --- a/book/03-git-branching/sections/basic-branching-and-merging.asc +++ b/book/03-git-branching/sections/basic-branching-and-merging.asc @@ -4,7 +4,7 @@ Let's go through a simple example of branching and merging with a workflow that You'll follow these steps: . Do some work on a website. -. Create a branch for a new story you're working on. +. Create a branch for a new user story you're working on. . Do some work in that branch. At this stage, you'll receive a call that another issue is critical and you need a hotfix. @@ -13,7 +13,7 @@ You'll do the following: . Switch to your production branch. . Create a branch to add the hotfix. . After it's tested, merge the hotfix branch, and push to production. -. Switch back to your original story and continue working. +. Switch back to your original user story and continue working. [[_basic_branching]] ==== Basic Branching @@ -22,7 +22,7 @@ You'll do the following: First, let's say you're working on your project and have a couple of commits already on the `master` branch. .A simple commit history -image::images/basic-branching-1.png[A simple commit history.] +image::images/basic-branching-1.png[A simple commit history] You've decided that you're going to work on issue #53 in whatever issue-tracking system your company uses. To create a new branch and switch to it at the same time, you can run the `git checkout` command with the `-b` switch: @@ -42,7 +42,7 @@ $ git checkout iss53 ---- .Creating a new branch pointer -image::images/basic-branching-2.png[Creating a new branch pointer.] +image::images/basic-branching-2.png[Creating a new branch pointer] You work on your website and do some commits. Doing so moves the `iss53` branch forward, because you have it checked out (that is, your `HEAD` is pointing to it): @@ -50,11 +50,11 @@ Doing so moves the `iss53` branch forward, because you have it checked out (that [source,console] ---- $ vim index.html -$ git commit -a -m 'added a new footer [issue 53]' +$ git commit -a -m 'Create new footer [issue 53]' ---- .The `iss53` branch has moved forward with your work -image::images/basic-branching-3.png[The `iss53` branch has moved forward with your work.] +image::images/basic-branching-3.png[The `iss53` branch has moved forward with your work] Now you get the call that there is an issue with the website, and you need to fix it immediately. With Git, you don't have to deploy your fix along with the `iss53` changes you've made, and you don't have to put a lot of effort into reverting those changes before you can work on applying your fix to what is in production. @@ -83,13 +83,13 @@ Let's create a `hotfix` branch on which to work until it's completed: $ git checkout -b hotfix Switched to a new branch 'hotfix' $ vim index.html -$ git commit -a -m 'fixed the broken email address' -[hotfix 1fb7853] fixed the broken email address +$ git commit -a -m 'Fix broken email address' +[hotfix 1fb7853] Fix broken email address 1 file changed, 2 insertions(+) ---- .Hotfix branch based on `master` -image::images/basic-branching-4.png[Hotfix branch based on `master`.] +image::images/basic-branching-4.png[Hotfix branch based on `master`] You can run your tests, make sure the hotfix is what you want, and finally merge the `hotfix` branch back into your `master` branch to deploy to production. You do this with the `git merge` command:(((git commands, merge))) @@ -104,14 +104,14 @@ Fast-forward 1 file changed, 2 insertions(+) ---- -You'll notice the phrase ``fast-forward'' in that merge. +You'll notice the phrase "`fast-forward`" in that merge. Because the commit `C4` pointed to by the branch `hotfix` you merged in was directly ahead of the commit `C2` you're on, Git simply moves the pointer forward. -To phrase that another way, when you try to merge one commit with a commit that can be reached by following the first commit's history, Git simplifies things by moving the pointer forward because there is no divergent work to merge together -- this is called a ``fast-forward.'' +To phrase that another way, when you try to merge one commit with a commit that can be reached by following the first commit's history, Git simplifies things by moving the pointer forward because there is no divergent work to merge together -- this is called a "`fast-forward.`" Your change is now in the snapshot of the commit pointed to by the `master` branch, and you can deploy the fix. .`master` is fast-forwarded to `hotfix` -image::images/basic-branching-5.png[`master` is fast-forwarded to `hotfix`.] +image::images/basic-branching-5.png[`master` is fast-forwarded to `hotfix`] After your super-important fix is deployed, you're ready to switch back to the work you were doing before you were interrupted. However, first you'll delete the `hotfix` branch, because you no longer need it -- the `master` branch points at the same place. @@ -130,13 +130,13 @@ Now you can switch back to your work-in-progress branch on issue #53 and continu $ git checkout iss53 Switched to branch "iss53" $ vim index.html -$ git commit -a -m 'finished the new footer [issue 53]' -[iss53 ad82d7a] finished the new footer [issue 53] +$ git commit -a -m 'Finish the new footer [issue 53]' +[iss53 ad82d7a] Finish the new footer [issue 53] 1 file changed, 1 insertion(+) ---- .Work continues on `iss53` -image::images/basic-branching-6.png[Work continues on `iss53`.] +image::images/basic-branching-6.png[Work continues on `iss53`] It's worth noting here that the work you did in your `hotfix` branch is not contained in the files in your `iss53` branch. If you need to pull it in, you can merge your `master` branch into your `iss53` branch by running `git merge master`, or you can wait to integrate those changes until you decide to pull the `iss53` branch back into `master` later. @@ -165,19 +165,16 @@ Because the commit on the branch you're on isn't a direct ancestor of the branch In this case, Git does a simple three-way merge, using the two snapshots pointed to by the branch tips and the common ancestor of the two. .Three snapshots used in a typical merge -image::images/basic-merging-1.png[Three snapshots used in a typical merge.] +image::images/basic-merging-1.png[Three snapshots used in a typical merge] Instead of just moving the branch pointer forward, Git creates a new snapshot that results from this three-way merge and automatically creates a new commit that points to it. This is referred to as a merge commit, and is special in that it has more than one parent. .A merge commit -image::images/basic-merging-2.png[A merge commit.] - -It's worth pointing out that Git determines the best common ancestor to use for its merge base; this is different than older tools like CVS or Subversion (before version 1.5), where the developer doing the merge had to figure out the best merge base for themselves. -This makes merging a heck of a lot easier in Git than in these other systems. +image::images/basic-merging-2.png[A merge commit] Now that your work is merged in, you have no further need for the `iss53` branch. -You can close the ticket in your ticket-tracking system, and delete the branch: +You can close the issue in your issue-tracking system, and delete the branch: [source,console] ---- @@ -189,7 +186,7 @@ $ git branch -d iss53 (((merging, conflicts))) Occasionally, this process doesn't go smoothly. -If you changed the same part of the same file differently in the two branches you're merging together, Git won't be able to merge them cleanly. +If you changed the same part of the same file differently in the two branches you're merging, Git won't be able to merge them cleanly. If your fix for issue #53 modified the same part of a file as the `hotfix` branch, you'll get a merge conflict that looks something like this: [source,console] @@ -268,7 +265,7 @@ Normal merge conflict for 'index.html': Hit return to start merge resolution tool (opendiff): ---- -If you want to use a merge tool other than the default (Git chose `opendiff` in this case because the command was run on a Mac), you can see all the supported tools listed at the top after ``one of the following tools.'' +If you want to use a merge tool other than the default (Git chose `opendiff` in this case because the command was run on macOS), you can see all the supported tools listed at the top after "`one of the following tools.`" Just type the name of the tool you'd rather use. [NOTE] diff --git a/book/03-git-branching/sections/branch-management.asc b/book/03-git-branching/sections/branch-management.asc index 3b384babb..ae81e89aa 100644 --- a/book/03-git-branching/sections/branch-management.asc +++ b/book/03-git-branching/sections/branch-management.asc @@ -22,9 +22,9 @@ To see the last commit on each branch, you can run `git branch -v`: [source,console] ---- $ git branch -v - iss53 93b412c fix javascript issue + iss53 93b412c Fix javascript issue * master 7a98805 Merge branch 'iss53' - testing 782fd34 add scott to the author list in the readmes + testing 782fd34 Add scott to the author list in the readme ---- The useful `--merged` and `--no-merged` options can filter this list to branches that you have or have not yet merged into the branch you're currently on. @@ -64,7 +64,7 @@ If you really do want to delete the branch and lose that work, you can force it ==== The options described above, `--merged` and `--no-merged` will, if not given a commit or branch name as an argument, show you what is, respectively, merged or not merged into your _current_ branch. -You can always provide an additional argument to ask about the merge state with respect to some other branch without checking that other branch out first, as in, what is not merged into the `master` branch? +You can always provide an additional argument to ask about the merge state with respect to some other branch without checking that other branch out first, as in, what is not merged into the `master` branch? [source,console] ---- $ git checkout testing @@ -73,3 +73,111 @@ $ git branch --no-merged master featureB ---- ==== + +==== Changing a branch name + +[CAUTION] +==== +Do not rename branches that are still in use by other collaborators. +Do not rename a branch like master/main/mainline without having read the section <<_changing_master>>. +==== + +Suppose you have a branch that is called `bad-branch-name` and you want to change it to `corrected-branch-name`, while keeping all history. +You also want to change the branch name on the remote (GitHub, GitLab, other server). +How do you do this? + +Rename the branch locally with the `git branch --move` command: + +[source, console] +---- +$ git branch --move bad-branch-name corrected-branch-name +---- + +This replaces your `bad-branch-name` with `corrected-branch-name`, but this change is only local for now. +To let others see the corrected branch on the remote, push it: + +[source,console] +---- +$ git push --set-upstream origin corrected-branch-name +---- + +Now we'll take a brief look at where we are now: + +[source, console] +---- +$ git branch --all +* corrected-branch-name + main + remotes/origin/bad-branch-name + remotes/origin/corrected-branch-name + remotes/origin/main +---- + +Notice that you're on the branch `corrected-branch-name` and it's available on the remote. +However, the branch with the bad name is also still present there but you can delete it by executing the following command: + +[source,console] +---- +$ git push origin --delete bad-branch-name +---- + +Now the bad branch name is fully replaced with the corrected branch name. + +[[_changing_master]] +===== Changing the master branch name + +[WARNING] +==== +Changing the name of a branch like master/main/mainline/default will break the integrations, services, helper utilities and build/release scripts that your repository uses. +Before you do this, make sure you consult with your collaborators. +Also, make sure you do a thorough search through your repo and update any references to the old branch name in your code and scripts. +==== + +Rename your local `master` branch into `main` with the following command: + +[source,console] +---- +$ git branch --move master main +---- + +There's no local `master` branch anymore, because it's renamed to the `main` branch. + +To let others see the new `main` branch, you need to push it to the remote. +This makes the renamed branch available on the remote. + +[source,console] +---- +$ git push --set-upstream origin main +---- + +Now we end up with the following state: + +[source,console] +---- +$ git branch --all +* main + remotes/origin/HEAD -> origin/master + remotes/origin/main + remotes/origin/master +---- + +Your local `master` branch is gone, as it's replaced with the `main` branch. +The `main` branch is present on the remote. +However, the old `master` branch is still present on the remote. +Other collaborators will continue to use the `master` branch as the base of their work, until you make some further changes. + +Now you have a few more tasks in front of you to complete the transition: + +* Any projects that depend on this one will need to update their code and/or configuration. +* Update any test-runner configuration files. +* Adjust build and release scripts. +* Redirect settings on your repo host for things like the repo's default branch, merge rules, and other things that match branch names. +* Update references to the old branch in documentation. +* Close or merge any pull requests that target the old branch. + +After you've done all these tasks, and are certain the `main` branch performs just as the `master` branch, you can delete the `master` branch: + +[source, console] +---- +$ git push origin --delete master +---- diff --git a/book/03-git-branching/sections/nutshell.asc b/book/03-git-branching/sections/nutshell.asc index 169583517..2bffd5ddb 100644 --- a/book/03-git-branching/sections/nutshell.asc +++ b/book/03-git-branching/sections/nutshell.asc @@ -3,55 +3,55 @@ To really understand the way Git does branching, we need to take a step back and examine how Git stores its data. -As you may remember from <>, Git doesn't store data as a series of changesets or differences, but instead as a series of snapshots. +As you may remember from <>, Git doesn't store data as a series of changesets or differences, but instead as a series of _snapshots_. When you make a commit, Git stores a commit object that contains a pointer to the snapshot of the content you staged. -This object also contains the author's name and email, the message that you typed, and pointers to the commit or commits that directly came before this commit (its parent or parents): zero parents for the initial commit, one parent for a normal commit, and multiple parents for a commit that results from a merge of two or more branches. +This object also contains the author's name and email address, the message that you typed, and pointers to the commit or commits that directly came before this commit (its parent or parents): zero parents for the initial commit, one parent for a normal commit, and multiple parents for a commit that results from a merge of two or more branches. To visualize this, let's assume that you have a directory containing three files, and you stage them all and commit. -Staging the files computes a checksum for each one (the SHA-1 hash we mentioned in <>), stores that version of the file in the Git repository (Git refers to them as blobs), and adds that checksum to the staging area: +Staging the files computes a checksum for each one (the SHA-1 hash we mentioned in <>), stores that version of the file in the Git repository (Git refers to them as _blobs_), and adds that checksum to the staging area: [source,console] ---- $ git add README test.rb LICENSE -$ git commit -m 'The initial commit of my project' +$ git commit -m 'Initial commit' ---- -When you create the commit by running `git commit`, Git checksums each subdirectory (in this case, just the root project directory) and stores those tree objects in the Git repository. +When you create the commit by running `git commit`, Git checksums each subdirectory (in this case, just the root project directory) and stores them as a tree object in the Git repository. Git then creates a commit object that has the metadata and a pointer to the root project tree so it can re-create that snapshot when needed.(((git commands, commit))) -Your Git repository now contains five objects: one blob for the contents of each of your three files, one tree that lists the contents of the directory and specifies which file names are stored as which blobs, and one commit with the pointer to that root tree and all the commit metadata. +Your Git repository now contains five objects: three _blobs_ (each representing the contents of one of the three files), one _tree_ that lists the contents of the directory and specifies which file names are stored as which blobs, and one _commit_ with the pointer to that root tree and all the commit metadata. .A commit and its tree -image::images/commit-and-tree.png[A commit and its tree.] +image::images/commit-and-tree.png[A commit and its tree] If you make some changes and commit again, the next commit stores a pointer to the commit that came immediately before it. .Commits and their parents -image::images/commits-and-parents.png[Commits and their parents.] +image::images/commits-and-parents.png[Commits and their parents] A branch in Git is simply a lightweight movable pointer to one of these commits. The default branch name in Git is `master`. As you start making commits, you're given a `master` branch that points to the last commit you made. -Every time you commit, it moves forward automatically. +Every time you commit, the `master` branch pointer moves forward automatically. [NOTE] ==== -The ``master'' branch in Git is not a special branch.(((master))) +The "`master`" branch in Git is not a special branch.(((master))) It is exactly like any other branch. The only reason nearly every repository has one is that the `git init` command creates it by default and most people don't bother to change it. ==== .A branch and its commit history -image::images/branch-and-history.png[A branch and its commit history.] +image::images/branch-and-history.png[A branch and its commit history] [[_create_new_branch]] ==== Creating a New Branch (((branches, creating))) -What happens if you create a new branch? +What happens when you create a new branch? Well, doing so creates a new pointer for you to move around. -Let's say you create a new branch called testing. +Let's say you want to create a new branch called `testing`. You do this with the `git branch` command:(((git commands, branch))) [source,console] @@ -62,7 +62,7 @@ $ git branch testing This creates a new pointer to the same commit you're currently on. .Two branches pointing into the same series of commits -image::images/two-branches.png[Two branches pointing into the same series of commits.] +image::images/two-branches.png[Two branches pointing into the same series of commits] How does Git know what branch you're currently on? It keeps a special pointer called `HEAD`. @@ -72,7 +72,7 @@ In this case, you're still on `master`. The `git branch` command only _created_ a new branch -- it didn't switch to that branch. .HEAD pointing to a branch -image::images/head-to-master.png[HEAD pointing to a branch.] +image::images/head-to-master.png[HEAD pointing to a branch] You can easily see this by running a simple `git log` command that shows you where the branch pointers are pointing. This option is called `--decorate`. @@ -80,12 +80,12 @@ This option is called `--decorate`. [source,console] ---- $ git log --oneline --decorate -f30ab (HEAD -> master, testing) add feature #32 - ability to add new formats to the central interface -34ac2 Fixed bug #1328 - stack overflow under certain conditions -98ca9 The initial commit of my project +f30ab (HEAD -> master, testing) Add feature #32 - ability to add new formats to the central interface +34ac2 Fix bug #1328 - stack overflow under certain conditions +98ca9 Initial commit ---- -You can see the ``master'' and ``testing'' branches that are right there next to the `f30ab` commit. +You can see the `master` and `testing` branches that are right there next to the `f30ab` commit. [[_switching_branches]] ==== Switching Branches @@ -102,7 +102,7 @@ $ git checkout testing This moves `HEAD` to point to the `testing` branch. .HEAD points to the current branch -image::images/head-to-testing.png[HEAD points to the current branch.] +image::images/head-to-testing.png[HEAD points to the current branch] What is the significance of that? Well, let's do another commit: @@ -110,11 +110,11 @@ Well, let's do another commit: [source,console] ---- $ vim test.rb -$ git commit -a -m 'made a change' +$ git commit -a -m 'Make a change' ---- .The HEAD branch moves forward when a commit is made -image::images/advance-testing.png[The HEAD branch moves forward when a commit is made.] +image::images/advance-testing.png[The HEAD branch moves forward when a commit is made] This is interesting, because now your `testing` branch has moved forward, but your `master` branch still points to the commit you were on when you ran `git checkout` to switch branches. Let's switch back to the `master` branch: @@ -124,8 +124,20 @@ Let's switch back to the `master` branch: $ git checkout master ---- +[NOTE] +.`git log` doesn't show _all_ the branches _all_ the time +==== +If you were to run `git log` right now, you might wonder where the "testing" branch you just created went, as it would not appear in the output. + +The branch hasn't disappeared; Git just doesn't know that you're interested in that branch and it is trying to show you what it thinks you're interested in. +In other words, by default, `git log` will only show commit history below the branch you've checked out. + +To show commit history for the desired branch you have to explicitly specify it: `git log testing`. +To show all of the branches, add `--all` to your `git log` command. +==== + .HEAD moves when you checkout -image::images/checkout-master.png[HEAD moves when you checkout.] +image::images/checkout-master.png[HEAD moves when you checkout] That command did two things. It moved the HEAD pointer back to point to the `master` branch, and it reverted the files in your working directory back to the snapshot that `master` points to. @@ -145,7 +157,7 @@ Let's make a few changes and commit again: [source,console] ---- $ vim test.rb -$ git commit -a -m 'made other changes' +$ git commit -a -m 'Make other changes' ---- Now your project history has diverged (see <>). @@ -155,7 +167,7 @@ And you did all that with simple `branch`, `checkout`, and `commit` commands. [[divergent_history]] .Divergent history -image::images/advance-master.png[Divergent history.] +image::images/advance-master.png[Divergent history] You can also see this easily with the `git log` command. If you run `git log --oneline --decorate --graph --all` it will print out the history of your commits, showing where your branch pointers are and how your history has diverged. @@ -163,12 +175,12 @@ If you run `git log --oneline --decorate --graph --all` it will print out the hi [source,console] ---- $ git log --oneline --decorate --graph --all -* c2b9e (HEAD, master) made other changes -| * 87ab2 (testing) made a change +* c2b9e (HEAD, master) Make other changes +| * 87ab2 (testing) Make a change |/ -* f30ab add feature #32 - ability to add new formats to the -* 34ac2 fixed bug #1328 - stack overflow under certain conditions -* 98ca9 initial commit of my project +* f30ab Add feature #32 - ability to add new formats to the central interface +* 34ac2 Fix bug #1328 - stack overflow under certain conditions +* 98ca9 Initial commit of my project ---- Because a branch in Git is actually a simple file that contains the 40 character SHA-1 checksum of the commit it points to, branches are cheap to create and destroy. @@ -180,3 +192,19 @@ Also, because we're recording the parents when we commit, finding a proper merge These features help encourage developers to create and use branches often. Let's see why you should do so. + +[NOTE] +.Creating a new branch and switching to it at the same time +==== +It's typical to create a new branch and want to switch to that new branch at the same time -- this can be done in one operation with `git checkout -b `. +==== + +[NOTE] +==== +From Git version 2.23 onwards you can use `git switch` instead of `git checkout` to: + +- Switch to an existing branch: `git switch testing-branch`. +- Create a new branch and switch to it: `git switch -c new-branch`. + The `-c` flag stands for create, you can also use the full flag: `--create`. +- Return to your previously checked out branch: `git switch -`. +==== diff --git a/book/03-git-branching/sections/rebasing.asc b/book/03-git-branching/sections/rebasing.asc index f64d0ae85..c66535246 100644 --- a/book/03-git-branching/sections/rebasing.asc +++ b/book/03-git-branching/sections/rebasing.asc @@ -10,19 +10,20 @@ In this section you'll learn what rebasing is, how to do it, why it's a pretty a If you go back to an earlier example from <<_basic_merging>>, you can see that you diverged your work and made commits on two different branches. .Simple divergent history -image::images/basic-rebase-1.png[Simple divergent history.] +image::images/basic-rebase-1.png[Simple divergent history] The easiest way to integrate the branches, as we've already covered, is the `merge` command. It performs a three-way merge between the two latest branch snapshots (`C3` and `C4`) and the most recent common ancestor of the two (`C2`), creating a new snapshot (and commit). +[[rebasing-merging-example]] .Merging to integrate diverged work history -image::images/basic-rebase-2.png[Merging to integrate diverged work history.] +image::images/basic-rebase-2.png[Merging to integrate diverged work history] However, there is another way: you can take the patch of the change that was introduced in `C4` and reapply it on top of `C3`. In Git, this is called _rebasing_. -With the `rebase` command, you can take all the changes that were committed on one branch and replay them on another one.(((git commands, rebase))) +With the `rebase` command, you can take all the changes that were committed on one branch and replay them on a different branch.(((git commands, rebase))) -In this example, you'd run the following: +For this example, you would check out the `experiment` branch, and then rebase it onto the `master` branch as follows: [source,console] ---- @@ -32,10 +33,10 @@ First, rewinding head to replay your work on top of it... Applying: added staged command ---- -It works by going to the common ancestor of the two branches (the one you're on and the one you're rebasing onto), getting the diff introduced by each commit of the branch you're on, saving those diffs to temporary files, resetting the current branch to the same commit as the branch you are rebasing onto, and finally applying each change in turn. +This operation works by going to the common ancestor of the two branches (the one you're on and the one you're rebasing onto), getting the diff introduced by each commit of the branch you're on, saving those diffs to temporary files, resetting the current branch to the same commit as the branch you are rebasing onto, and finally applying each change in turn. .Rebasing the change introduced in `C4` onto `C3` -image::images/basic-rebase-3.png[Rebasing the change introduced in `C4` onto `C3`.] +image::images/basic-rebase-3.png[Rebasing the change introduced in `C4` onto `C3`] At this point, you can go back to the `master` branch and do a fast-forward merge. @@ -45,10 +46,10 @@ $ git checkout master $ git merge experiment ---- -.Fast-forwarding the master branch -image::images/basic-rebase-4.png[Fast-forwarding the master branch.] +.Fast-forwarding the `master` branch +image::images/basic-rebase-4.png[Fast-forwarding the `master` branch] -Now, the snapshot pointed to by `C4'` is exactly the same as the one that was pointed to by `C5` in the merge example. +Now, the snapshot pointed to by `C4'` is exactly the same as the one that was pointed to by `C5` in <>. There is no difference in the end product of the integration, but rebasing makes for a cleaner history. If you examine the log of a rebased branch, it looks like a linear history: it appears that all the work happened in series, even when it originally happened in parallel. @@ -56,7 +57,7 @@ Often, you'll do this to make sure your commits apply cleanly on a remote branch In this case, you'd do your work in a branch and then rebase your work onto `origin/master` when you were ready to submit your patches to the main project. That way, the maintainer doesn't have to do any integration work -- just a fast-forward or a clean apply. -Note that the snapshot pointed to by the final commit you end up with, whether it's the last of the rebased commits for a rebase or the final merge commit after a merge, is the same snapshot – it's only the history that is different. +Note that the snapshot pointed to by the final commit you end up with, whether it's the last of the rebased commits for a rebase or the final merge commit after a merge, is the same snapshot -- it's only the history that is different. Rebasing replays changes from one line of work onto another in the order they were introduced, whereas merging takes the endpoints and merges them together. ==== More Interesting Rebases @@ -65,25 +66,25 @@ You can also have your rebase replay on something other than the rebase target b Take a history like <>, for example. You branched a topic branch (`server`) to add some server-side functionality to your project, and made a commit. Then, you branched off that to make the client-side changes (`client`) and committed a few times. -Finally, you went back to your server branch and did a few more commits. +Finally, you went back to your `server` branch and did a few more commits. [[rbdiag_e]] .A history with a topic branch off another topic branch -image::images/interesting-rebase-1.png[A history with a topic branch off another topic branch.] +image::images/interesting-rebase-1.png[A history with a topic branch off another topic branch] Suppose you decide that you want to merge your client-side changes into your mainline for a release, but you want to hold off on the server-side changes until it's tested further. -You can take the changes on client that aren't on server (`C8` and `C9`) and replay them on your `master` branch by using the `--onto` option of `git rebase`: +You can take the changes on `client` that aren't on `server` (`C8` and `C9`) and replay them on your `master` branch by using the `--onto` option of `git rebase`: [source,console] ---- $ git rebase --onto master server client ---- -This basically says, ``Take the `client` branch, figure out the patches since it diverged from the `server` branch, and replay these patches in the `client` branch as if it was based directly off the `master` branch instead.'' +This basically says, "`Take the `client` branch, figure out the patches since it diverged from the `server` branch, and replay these patches in the `client` branch as if it was based directly off the `master` branch instead.`" It's a bit complex, but the result is pretty cool. .Rebasing a topic branch off another topic branch -image::images/interesting-rebase-2.png[Rebasing a topic branch off another topic branch.] +image::images/interesting-rebase-2.png[Rebasing a topic branch off another topic branch] Now you can fast-forward your `master` branch (see <>): @@ -94,11 +95,11 @@ $ git merge client ---- [[rbdiag_g]] -.Fast-forwarding your master branch to include the client branch changes -image::images/interesting-rebase-3.png[Fast-forwarding your master branch to include the client branch changes.] +.Fast-forwarding your `master` branch to include the `client` branch changes +image::images/interesting-rebase-3.png[Fast-forwarding your `master` branch to include the `client` branch changes] -Let's say you decide to pull in your server branch as well. -You can rebase the server branch onto the `master` branch without having to check it out first by running `git rebase ` -- which checks out the topic branch (in this case, `server`) for you and replays it onto the base branch (`master`): +Let's say you decide to pull in your `server` branch as well. +You can rebase the `server` branch onto the `master` branch without having to check it out first by running `git rebase ` -- which checks out the topic branch (in this case, `server`) for you and replays it onto the base branch (`master`): [source,console] ---- @@ -108,8 +109,8 @@ $ git rebase master server This replays your `server` work on top of your `master` work, as shown in <>. [[rbdiag_h]] -.Rebasing your server branch on top of your master branch -image::images/interesting-rebase-4.png[Rebasing your server branch on top of your master branch.] +.Rebasing your `server` branch on top of your `master` branch +image::images/interesting-rebase-4.png[Rebasing your `server` branch on top of your `master` branch] Then, you can fast-forward the base branch (`master`): @@ -129,7 +130,7 @@ $ git branch -d server [[rbdiag_i]] .Final commit history -image::images/interesting-rebase-5.png[Final commit history.] +image::images/interesting-rebase-5.png[Final commit history] [[_rebase_peril]] ==== The Perils of Rebasing @@ -137,7 +138,7 @@ image::images/interesting-rebase-5.png[Final commit history.] (((rebasing, perils of))) Ahh, but the bliss of rebasing isn't without its drawbacks, which can be summed up in a single line: -*Do not rebase commits that exist outside your repository.* +*Do not rebase commits that exist outside your repository and that people may have based work on.* If you follow that guideline, you'll be fine. If you don't, people will hate you, and you'll be scorned by friends and family. @@ -150,27 +151,27 @@ Suppose you clone from a central server and then do some work off that. Your commit history looks like this: .Clone a repository, and base some work on it -image::images/perils-of-rebasing-1.png["Clone a repository, and base some work on it."] +image::images/perils-of-rebasing-1.png["Clone a repository, and base some work on it"] Now, someone else does more work that includes a merge, and pushes that work to the central server. You fetch it and merge the new remote branch into your work, making your history look something like this: .Fetch more commits, and merge them into your work -image::images/perils-of-rebasing-2.png["Fetch more commits, and merge them into your work."] +image::images/perils-of-rebasing-2.png["Fetch more commits, and merge them into your work"] Next, the person who pushed the merged work decides to go back and rebase their work instead; they do a `git push --force` to overwrite the history on the server. You then fetch from that server, bringing down the new commits. [[_pre_merge_rebase_work]] .Someone pushes rebased commits, abandoning commits you've based your work on -image::images/perils-of-rebasing-3.png["Someone pushes rebased commits, abandoning commits you've based your work on."] +image::images/perils-of-rebasing-3.png["Someone pushes rebased commits, abandoning commits you've based your work on"] Now you're both in a pickle. If you do a `git pull`, you'll create a merge commit which includes both lines of history, and your repository will look like this: [[_merge_rebase_work]] .You merge in the same work again into a new merge commit -image::images/perils-of-rebasing-4.png[You merge in the same work again into a new merge commit.] +image::images/perils-of-rebasing-4.png[You merge in the same work again into a new merge commit] If you run a `git log` when your history looks like this, you'll see two commits that have the same author, date, and message, which will be confusing. Furthermore, if you push this history back up to the server, you'll reintroduce all those rebased commits to the central server, which can further confuse people. @@ -183,32 +184,33 @@ If you *do* find yourself in a situation like this, Git has some further magic t If someone on your team force pushes changes that overwrite work that you've based work on, your challenge is to figure out what is yours and what they've rewritten. It turns out that in addition to the commit SHA-1 checksum, Git also calculates a checksum that is based just on the patch introduced with the commit. -This is called a ``patch-id''. +This is called a "`patch-id`". If you pull down work that was rewritten and rebase it on top of the new commits from your partner, Git can often successfully figure out what is uniquely yours and apply them back on top of the new branch. For instance, in the previous scenario, if instead of doing a merge when we're at <<_pre_merge_rebase_work>> we run `git rebase teamone/master`, Git will: -* Determine what work is unique to our branch (C2, C3, C4, C6, C7) -* Determine which are not merge commits (C2, C3, C4) -* Determine which have not been rewritten into the target branch (just C2 and C3, since C4 is the same patch as C4') +* Determine what work is unique to our branch (`C2`, `C3`, `C4`, `C6`, `C7`) +* Determine which are not merge commits (`C2`, `C3`, `C4`) +* Determine which have not been rewritten into the target branch (just `C2` and `C3`, since `C4` is the same patch as `C4'`) * Apply those commits to the top of `teamone/master` So instead of the result we see in <<_merge_rebase_work>>, we would end up with something more like <<_rebase_rebase_work>>. [[_rebase_rebase_work]] -.Rebase on top of force-pushed rebase work. -image::images/perils-of-rebasing-5.png[Rebase on top of force-pushed rebase work.] +.Rebase on top of force-pushed rebase work +image::images/perils-of-rebasing-5.png[Rebase on top of force-pushed rebase work] -This only works if C4 and C4' that your partner made are almost exactly the same patch. -Otherwise the rebase won't be able to tell that it's a duplicate and will add another C4-like patch (which will probably fail to apply cleanly, since the changes would already be at least somewhat there). +This only works if `C4` and `C4'` that your partner made are almost exactly the same patch. +Otherwise the rebase won't be able to tell that it's a duplicate and will add another `C4`-like patch (which will probably fail to apply cleanly, since the changes would already be at least somewhat there). You can also simplify this by running a `git pull --rebase` instead of a normal `git pull`. Or you could do it manually with a `git fetch` followed by a `git rebase teamone/master` in this case. If you are using `git pull` and want to make `--rebase` the default, you can set the `pull.rebase` config value with something like `git config --global pull.rebase true`. -If you treat rebasing as a way to clean up and work with commits before you push them, and if you only rebase commits that have never been available publicly, then you'll be fine. +If you only ever rebase commits that have never left your own computer, you'll be just fine. +If you rebase commits that have been pushed, but that no one else has based commits from, you'll also be fine. If you rebase commits that have already been pushed publicly, and people may have based work on those commits, then you may be in for some frustrating trouble, and the scorn of your teammates. If you or a partner does find it necessary at some point, make sure everyone knows to run `git pull --rebase` to try to make the pain after it happens a little bit simpler. @@ -226,11 +228,13 @@ So what if there was a messy series of merge commits? That's how it happened, and the repository should preserve that for posterity. The opposing point of view is that the commit history is the *story of how your project was made.* -You wouldn't publish the first draft of a book, and the manual for how to maintain your software deserves careful editing. -This is the camp that uses tools like rebase and filter-branch to tell the story in the way that's best for future readers. +You wouldn't publish the first draft of a book, so why show your messy work? +When you're working on a project, you may need a record of all your missteps and dead-end paths, but when it's time to show your work to the world, you may want to tell a more coherent story of how to get from A to B. +People in this camp use tools like `rebase` and `filter-branch` to rewrite their commits before they're merged into the mainline branch. +They use tools like `rebase` and `filter-branch`, to tell the story in the way that's best for future readers. Now, to the question of whether merging or rebasing is better: hopefully you'll see that it's not that simple. Git is a powerful tool, and allows you to do many things to and with your history, but every team and every project is different. Now that you know how both of these things work, it's up to you to decide which one is best for your particular situation. -In general the way to get the best of both worlds is to rebase local changes you've made but haven't shared yet before you push them in order to clean up your story, but never rebase anything you've pushed somewhere. +You can get the best of both worlds: rebase local changes before pushing to clean up your work, but never rebase anything that you've pushed somewhere. diff --git a/book/03-git-branching/sections/remote-branches.asc b/book/03-git-branching/sections/remote-branches.asc index 5f20117c0..adbb8735d 100644 --- a/book/03-git-branching/sections/remote-branches.asc +++ b/book/03-git-branching/sections/remote-branches.asc @@ -3,14 +3,14 @@ (((branches, remote)))(((references, remote))) Remote references are references (pointers) in your remote repositories, including branches, tags, and so on. -You can get a full list of remote references explicitly with `git ls-remote [remote]`, or `git remote show [remote]` for remote branches as well as more information. +You can get a full list of remote references explicitly with `git ls-remote `, or `git remote show ` for remote branches as well as more information. Nevertheless, a more common way is to take advantage of remote-tracking branches. Remote-tracking branches are references to the state of remote branches. They're local references that you can't move; Git moves them for you whenever you do any network communication, to make sure they accurately represent the state of the remote repository. Think of them as bookmarks, to remind you where the branches in your remote repositories were the last time you connected to them. -Remote-tracking branches take the form `/`. +Remote-tracking branch names take the form `/`. For instance, if you wanted to see what the `master` branch on your `origin` remote looked like as of the last time you communicated with it, you would check the `origin/master` branch. If you were working on an issue with a partner and they pushed up an `iss53` branch, you might have your own local `iss53` branch, but the branch on the server would be represented by the remote-tracking branch `origin/iss53`. @@ -20,27 +20,27 @@ If you clone from this, Git's `clone` command automatically names it `origin` fo Git also gives you your own local `master` branch starting at the same place as origin's `master` branch, so you have something to work from. [NOTE] -.``origin'' is not special +."`origin`" is not special ==== -Just like the branch name ``master'' does not have any special meaning in Git, neither does ``origin''. -While ``master'' is the default name for a starting branch when you run `git init` which is the only reason it's widely used, ``origin'' is the default name for a remote when you run `git clone`. +Just like the branch name "`master`" does not have any special meaning in Git, neither does "`origin`". +While "`master`" is the default name for a starting branch when you run `git init` which is the only reason it's widely used, "`origin`" is the default name for a remote when you run `git clone`. If you run `git clone -o booyah` instead, then you will have `booyah/master` as your default remote branch.(((origin))) ==== .Server and local repositories after cloning -image::images/remote-branches-1.png[Server and local repositories after cloning.] +image::images/remote-branches-1.png[Server and local repositories after cloning] If you do some work on your local `master` branch, and, in the meantime, someone else pushes to `git.ourcompany.com` and updates its `master` branch, then your histories move forward differently. -Also, as long as you stay out of contact with your origin server, your `origin/master` pointer doesn't move. +Also, as long as you stay out of contact with your `origin` server, your `origin/master` pointer doesn't move. .Local and remote work can diverge -image::images/remote-branches-2.png[Local and remote work can diverge.] +image::images/remote-branches-2.png[Local and remote work can diverge] -To synchronize your work, you run a `git fetch origin` command. -This command looks up which server ``origin'' is (in this case, it's `git.ourcompany.com`), fetches any data from it that you don't yet have, and updates your local database, moving your `origin/master` pointer to its new, more up-to-date position. +To synchronize your work with a given remote, you run a `git fetch ` command (in our case, `git fetch origin`). +This command looks up which server "`origin`" is (in this case, it's `git.ourcompany.com`), fetches any data from it that you don't yet have, and updates your local database, moving your `origin/master` pointer to its new, more up-to-date position. -.`git fetch` updates your remote references -image::images/remote-branches-3.png[`git fetch` updates your remote references.] +.`git fetch` updates your remote-tracking branches +image::images/remote-branches-3.png[`git fetch` updates your remote-tracking branches] To demonstrate having multiple remote servers and what remote branches for those remote projects look like, let's assume you have another internal Git server that is used only for development by one of your sprint teams. This server is at `git.team1.ourcompany.com`. @@ -48,19 +48,19 @@ You can add it as a new remote reference to the project you're currently working Name this remote `teamone`, which will be your shortname for that whole URL. .Adding another server as a remote -image::images/remote-branches-4.png[Adding another server as a remote.] +image::images/remote-branches-4.png[Adding another server as a remote] Now, you can run `git fetch teamone` to fetch everything the remote `teamone` server has that you don't have yet. Because that server has a subset of the data your `origin` server has right now, Git fetches no data but sets a remote-tracking branch called `teamone/master` to point to the commit that `teamone` has as its `master` branch. -.Remote tracking branch for `teamone/master` -image::images/remote-branches-5.png[Remote tracking branch for `teamone/master`.] +.Remote-tracking branch for `teamone/master` +image::images/remote-branches-5.png[Remote-tracking branch for `teamone/master`] [[_pushing_branches]] ==== Pushing (((pushing))) -When you want to share a branch with the world, you need to push it up to a remote that you have write access to. +When you want to share a branch with the world, you need to push it up to a remote to which you have write access. Your local branches aren't automatically synchronized to the remotes you write to -- you have to explicitly push the branches you want to share. That way, you can use private branches for work you don't want to share, and push up only the topic branches you want to collaborate on. @@ -80,9 +80,9 @@ To https://github.com/schacon/simplegit ---- This is a bit of a shortcut. -Git automatically expands the `serverfix` branchname out to `refs/heads/serverfix:refs/heads/serverfix`, which means, ``Take my serverfix local branch and push it to update the remote's serverfix branch.'' +Git automatically expands the `serverfix` branchname out to `refs/heads/serverfix:refs/heads/serverfix`, which means, "`Take my `serverfix` local branch and push it to update the remote's `serverfix` branch.`" We'll go over the `refs/heads/` part in detail in <>, but you can generally leave it off. -You can also do `git push origin serverfix:serverfix`, which does the same thing -- it says, ``Take my serverfix and make it the remote's serverfix.'' +You can also do `git push origin serverfix:serverfix`, which does the same thing -- it says, "`Take my serverfix and make it the remote's serverfix.`" You can use this format to push a local branch into a remote branch that is named differently. If you didn't want it to be called `serverfix` on the remote, you could instead run `git push origin serverfix:awesomebranch` to push your local `serverfix` branch to the `awesomebranch` branch on the remote project. @@ -92,7 +92,7 @@ If you didn't want it to be called `serverfix` on the remote, you could instead If you're using an HTTPS URL to push over, the Git server will ask you for your username and password for authentication. By default it will prompt you on the terminal for this information so the server can tell if you're allowed to push. -If you don't want to type it every single time you push, you can set up a ``credential cache''. +If you don't want to type it every single time you push, you can set up a "`credential cache`". The simplest is just to keep it in memory for a few minutes, which you can easily set up by running `git config --global credential.helper cache`. For more information on the various credential caching options available, see <>. @@ -112,7 +112,7 @@ From https://github.com/schacon/simplegit ---- It's important to note that when you do a fetch that brings down new remote-tracking branches, you don't automatically have local, editable copies of them. -In other words, in this case, you don't have a new `serverfix` branch -- you only have an `origin/serverfix` pointer that you can't modify. +In other words, in this case, you don't have a new `serverfix` branch -- you have only an `origin/serverfix` pointer that you can't modify. To merge this work into your current working branch, you can run `git merge origin/serverfix`. If you want your own `serverfix` branch that you can work on, you can base it off your remote-tracking branch: @@ -130,7 +130,7 @@ This gives you a local branch that you can work on that starts where `origin/ser ==== Tracking Branches (((branches, tracking)))(((branches, upstream))) -Checking out a local branch from a remote-tracking branch automatically creates what is called a ``tracking branch'' (and the branch it tracks is called an ``upstream branch''). +Checking out a local branch from a remote-tracking branch automatically creates what is called a "`tracking branch`" (and the branch it tracks is called an "`upstream branch`"). Tracking branches are local branches that have a direct relationship to a remote branch. If you're on a tracking branch and type `git pull`, Git automatically knows which server to fetch from and which branch to merge in. @@ -146,7 +146,8 @@ Branch serverfix set up to track remote branch serverfix from origin. Switched to a new branch 'serverfix' ---- -In fact, this is so common that there's even a shortcut for that shortcut. If the branch name you're trying to checkout (a) doesn't exist and (b) exactly matches a name on only one remote, Git will create a tracking branch for you: +In fact, this is so common that there's even a shortcut for that shortcut. +If the branch name you're trying to checkout (a) doesn't exist and (b) exactly matches a name on only one remote, Git will create a tracking branch for you: [source,console] ---- @@ -178,7 +179,7 @@ Branch serverfix set up to track remote branch serverfix from origin. .Upstream shorthand ==== When you have a tracking branch set up, you can reference its upstream branch with the `@{upstream}` or `@{u}` shorthand. -So if you're on the `master` branch and it's tracking `origin/master`, you can say something like `git merge @{u}` instead of `git merge origin/master` if you wish.(((+++@{u}+++)))(((+++@{upstream}+++))) +So if you're on the `master` branch and it's tracking `origin/master`, you can say something like `git merge @{u}` instead of `git merge origin/master` if you wish.(((@{u})))(((@{upstream}))) ==== If you want to see what tracking branches you have set up, you can use the `-vv` option to `git branch`. @@ -187,13 +188,13 @@ This will list out your local branches with more information including what each [source,console] ---- $ git branch -vv - iss53 7e424c3 [origin/iss53: ahead 2] forgot the brackets - master 1ae2a45 [origin/master] deploying index fix -* serverfix f8674d9 [teamone/server-fix-good: ahead 3, behind 1] this should do it - testing 5ea463a trying something new + iss53 7e424c3 [origin/iss53: ahead 2] Add forgotten brackets + master 1ae2a45 [origin/master] Deploy index fix +* serverfix f8674d9 [teamone/server-fix-good: ahead 3, behind 1] This should do it + testing 5ea463a Try something new ---- -So here we can see that our `iss53` branch is tracking `origin/iss53` and is ``ahead'' by two, meaning that we have two commits locally that are not pushed to the server. +So here we can see that our `iss53` branch is tracking `origin/iss53` and is "`ahead`" by two, meaning that we have two commits locally that are not pushed to the server. We can also see that our `master` branch is tracking `origin/master` and is up to date. Next we can see that our `serverfix` branch is tracking the `server-fix-good` branch on our `teamone` server and is ahead by three and behind by one, meaning that there is one commit on the server we haven't merged in yet and three commits locally that we haven't pushed. Finally we can see that our `testing` branch is not tracking any remote branch. @@ -211,18 +212,16 @@ $ git fetch --all; git branch -vv ==== Pulling (((pulling))) -While the `git fetch` command will fetch down all the changes on the server that you don't have yet, it will not modify your working directory at all. +While the `git fetch` command will fetch all the changes on the server that you don't have yet, it will not modify your working directory at all. It will simply get the data for you and let you merge it yourself. However, there is a command called `git pull` which is essentially a `git fetch` immediately followed by a `git merge` in most cases. If you have a tracking branch set up as demonstrated in the last section, either by explicitly setting it or by having it created for you by the `clone` or `checkout` commands, `git pull` will look up what server and branch your current branch is tracking, fetch from that server and then try to merge in that remote branch. -Generally it's better to simply use the `fetch` and `merge` commands explicitly as the magic of `git pull` can often be confusing. - [[_delete_branches]] ==== Deleting Remote Branches (((branches, deleting remote))) -Suppose you're done with a remote branch – say you and your collaborators are finished with a feature and have merged it into your remote's `master` branch (or whatever branch your stable codeline is in). +Suppose you're done with a remote branch -- say you and your collaborators are finished with a feature and have merged it into your remote's `master` branch (or whatever branch your stable codeline is in). You can delete a remote branch using the `--delete` option to `git push`. If you want to delete your `serverfix` branch from the server, you run the following: @@ -233,5 +232,5 @@ To https://github.com/schacon/simplegit - [deleted] serverfix ---- -Basically all this does is remove the pointer from the server. +Basically all this does is to remove the pointer from the server. The Git server will generally keep the data there for a while until a garbage collection runs, so if it was accidentally deleted, it's often easy to recover. diff --git a/book/03-git-branching/sections/workflows.asc b/book/03-git-branching/sections/workflows.asc index 87e164f40..9e6f3922a 100644 --- a/book/03-git-branching/sections/workflows.asc +++ b/book/03-git-branching/sections/workflows.asc @@ -17,13 +17,13 @@ In reality, we're talking about pointers moving up the line of commits you're ma The stable branches are farther down the line in your commit history, and the bleeding-edge branches are farther up the history. .A linear view of progressive-stability branching -image::images/lr-branches-1.png[A linear view of progressive-stability branching.] +image::images/lr-branches-1.png[A linear view of progressive-stability branching] It's generally easier to think about them as work silos, where sets of commits graduate to a more stable silo when they're fully tested. [[lrbranch_b]] -.A ``silo'' view of progressive-stability branching -image::images/lr-branches-2.png[A ``silo'' view of progressive-stability branching.] +.A "`silo`" view of progressive-stability branching +image::images/lr-branches-2.png[A “silo” view of progressive-stability branching] You can keep doing this for several levels of stability. Some larger projects also have a `proposed` or `pu` (proposed updates) branch that has integrated branches that may not be ready to go into the `next` or `master` branch. @@ -48,16 +48,16 @@ Consider an example of doing some work (on `master`), branching off for an issue Your commit history will look something like this: .Multiple topic branches -image::images/topic-branches-1.png[Multiple topic branches.] +image::images/topic-branches-1.png[Multiple topic branches] Now, let's say you decide you like the second solution to your issue best (`iss91v2`); and you showed the `dumbidea` branch to your coworkers, and it turns out to be genius. You can throw away the original `iss91` branch (losing commits `C5` and `C6`) and merge in the other two. Your history then looks like this: .History after merging `dumbidea` and `iss91v2` -image::images/topic-branches-2.png[History after merging `dumbidea` and `iss91v2`.] +image::images/topic-branches-2.png[History after merging `dumbidea` and `iss91v2`] We will go into more detail about the various possible workflows for your Git project in <>, so before you decide which branching scheme your next project will use, be sure to read that chapter. It's important to remember when you're doing all this that these branches are completely local. -When you're branching and merging, everything is being done only in your Git repository -- no server communication is happening. +When you're branching and merging, everything is being done only in your Git repository -- there is no communication with the server. diff --git a/book/04-git-server/sections/generating-ssh-key.asc b/book/04-git-server/sections/generating-ssh-key.asc index edd8d6e0e..d1a61daf4 100644 --- a/book/04-git-server/sections/generating-ssh-key.asc +++ b/book/04-git-server/sections/generating-ssh-key.asc @@ -18,12 +18,12 @@ config id_dsa.pub ---- You're looking for a pair of files named something like `id_dsa` or `id_rsa` and a matching file with a `.pub` extension. -The `.pub` file is your public key, and the other file is your private key. -If you don't have these files (or you don't even have a `.ssh` directory), you can create them by running a program called `ssh-keygen`, which is provided with the SSH package on Linux/Mac systems and comes with Git for Windows: +The `.pub` file is your public key, and the other file is the corresponding private key. +If you don't have these files (or you don't even have a `.ssh` directory), you can create them by running a program called `ssh-keygen`, which is provided with the SSH package on Linux/macOS systems and comes with Git for Windows: [source,console] ---- -$ ssh-keygen +$ ssh-keygen -o Generating public/private rsa key pair. Enter file in which to save the key (/home/schacon/.ssh/id_rsa): Created directory '/home/schacon/.ssh'. @@ -36,6 +36,8 @@ d0:82:24:8e:d7:f1:bb:9b:33:53:96:93:49:da:9b:e3 schacon@mylaptop.local ---- First it confirms where you want to save the key (`.ssh/id_rsa`), and then it asks twice for a passphrase, which you can leave empty if you don't want to type a password when you use the key. +However, if you do use a password, make sure to add the `-o` option; it saves the private key in a format that is more resistant to brute-force password cracking than is the default format. +You can also use the `ssh-agent` tool to prevent having to enter the password each time. Now, each user that does this has to send their public key to you or whoever is administrating the Git server (assuming you're using an SSH server setup that requires public keys). All they have to do is copy the contents of the `.pub` file and email it. @@ -52,4 +54,4 @@ mZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbx NrRFi9wrf+M7Q== schacon@mylaptop.local ---- -For a more in-depth tutorial on creating an SSH key on multiple operating systems, see the GitHub guide on SSH keys at https://help.github.com/articles/generating-ssh-keys[]. +For a more in-depth tutorial on creating an SSH key on multiple operating systems, see the GitHub guide on SSH keys at https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent[^]. diff --git a/book/04-git-server/sections/git-daemon.asc b/book/04-git-server/sections/git-daemon.asc index d8ed8872e..1fe172375 100644 --- a/book/04-git-server/sections/git-daemon.asc +++ b/book/04-git-server/sections/git-daemon.asc @@ -1,7 +1,7 @@ === Git Daemon (((serving repositories, git protocol))) -Next we'll set up a daemon serving repositories using the ``Git'' protocol. +Next we'll set up a daemon serving repositories using the "`Git`" protocol. This is a common choice for fast, unauthenticated access to your Git data. Remember that since this is not an authenticated service, anything you serve over this protocol is public within its network. @@ -52,40 +52,6 @@ Also, check that the Git binary is indeed located at `/usr/bin/git` and change t Finally, you'll run `systemctl enable git-daemon` to automatically start the service on boot, and can start and stop the service with, respectively, `systemctl start git-daemon` and `systemctl stop git-daemon`. -Until LTS 14.04, Ubuntu used upstart service unit configuration. -Therefore, on Ubuntu <= 14.04 you can use an Upstart script. -So, in the following file - -[source,console] ----- -/etc/init/local-git-daemon.conf ----- - -you put this script: - -[source,console] ----- -start on startup -stop on shutdown -exec /usr/bin/git daemon \ - --user=git --group=git \ - --reuseaddr \ - --base-path=/srv/git/ \ - /srv/git/ -respawn ----- - -For security reasons, it is strongly encouraged to have this daemon run as a user with read-only permissions to the repositories -- you can easily do this by creating a new user 'git-ro' and running the daemon as them. -For the sake of simplicity we'll simply run it as the same 'git' user that `git-shell` is running as. - -When you restart your machine, your Git daemon will start automatically and respawn if it goes down. -To get it running without having to reboot, you can run this: - -[source,console] ----- -$ initctl start local-git-daemon ----- - On other systems, you may want to use `xinetd`, a script in your `sysvinit` system, or something else -- as long as you get that command daemonized and watched somehow. Next, you have to tell Git which repositories to allow unauthenticated Git server-based access to. diff --git a/book/04-git-server/sections/git-on-a-server.asc b/book/04-git-server/sections/git-on-a-server.asc index b2a7d2c50..61847a993 100644 --- a/book/04-git-server/sections/git-on-a-server.asc +++ b/book/04-git-server/sections/git-on-a-server.asc @@ -5,7 +5,7 @@ Now we'll cover setting up a Git service running these protocols on your own ser [NOTE] ==== -Here we'll be demonstrating the commands and steps needed to do basic, simplified installations on a Linux-based server, though it's also possible to run these services on Mac or Windows servers. +Here we'll be demonstrating the commands and steps needed to do basic, simplified installations on a Linux-based server, though it's also possible to run these services on macOS or Windows servers. Actually setting up a production server within your infrastructure will certainly entail differences in security measures or operating system tools, but hopefully this will give you the general idea of what's involved. ==== @@ -23,7 +23,7 @@ done. You should now have a copy of the Git directory data in your `my_project.git` directory. -This is roughly equivalent to something like +This is roughly equivalent to something like: [source,console] ---- @@ -45,7 +45,7 @@ Assuming that `/srv/git` exists on that server, you can set up your new reposito $ scp -r my_project.git user@git.example.com:/srv/git ---- -At this point, other users who have SSH-based read access to the `/srv/git` directory on that server can clone your repository by running +At this point, other users who have SSH-based read access to the `/srv/git` directory on that server can clone your repository by running: [source,console] ---- @@ -54,7 +54,8 @@ $ git clone user@git.example.com:/srv/git/my_project.git If a user SSHs into a server and has write access to the `/srv/git/my_project.git` directory, they will also automatically have push access. -Git will automatically add group write permissions to a repository properly if you run the `git init` command with the `--shared` option.(((git commands, init, bare))) +Git will automatically add group write permissions to a repository properly if you run the `git init` command with the `--shared` option. +Note that by running this command, you will not destroy any commits, refs, etc. in the process.(((git commands, init, bare))) [source,console] ---- @@ -90,9 +91,9 @@ We assume that if you have a server with which to do this, you already have an S There are a few ways you can give access to everyone on your team. The first is to set up accounts for everybody, which is straightforward but can be cumbersome. -You may not want to run `adduser` and set temporary passwords for every user. +You may not want to run `adduser` (or the possible alternative `useradd`) and have to set temporary passwords for every new user. -A second method is to create a single 'git' user account on the machine, ask every user who is to have write access to send you an SSH public key, and add that key to the `~/.ssh/authorized_keys` file of that new account. +A second method is to create a single 'git' user account on the machine, ask every user who is to have write access to send you an SSH public key, and add that key to the `~/.ssh/authorized_keys` file of that new 'git' account. At that point, everyone will be able to access that machine via the 'git' account. This doesn't affect the commit data in any way -- the SSH user you connect as doesn't affect the commits you've recorded. diff --git a/book/04-git-server/sections/gitlab.asc b/book/04-git-server/sections/gitlab.asc index 5d42b5fc4..97de78937 100644 --- a/book/04-git-server/sections/gitlab.asc +++ b/book/04-git-server/sections/gitlab.asc @@ -2,77 +2,76 @@ (((serving repositories, GitLab)))(((GitLab))) GitWeb is pretty simplistic though. -If you're looking for a more modern, fully featured Git server, there are some several open source solutions out there that you can install instead. -As GitLab is one of the more popular ones, we'll cover installing and using it as an example. -This is a bit more complex than the GitWeb option and likely requires more maintenance, but it is a much more fully featured option. +If you're looking for a modern, fully featured Git server, there are several open source solutions out there that you can install instead. +As GitLab is one of the popular ones, we'll cover installing and using it as an example. +This is harder than the GitWeb option and will require more maintenance, but it is a fully featured option. ==== Installation -GitLab is a database-backed web application, so its installation is a bit more involved than some other Git servers. -Fortunately, this process is very well-documented and supported. +GitLab is a database-backed web application, so its installation is more involved than some other Git servers. +Fortunately, this process is well-documented and supported. +GitLab strongly recommends installing GitLab on your server via the official Omnibus GitLab package. -There are a few methods you can pursue to install GitLab. -To get something up and running quickly, you can download a virtual machine image or a one-click installer from https://bitnami.com/stack/gitlab[], and tweak the configuration to match your particular environment.(((bitnami))) -One nice touch Bitnami has included is the login screen (accessed by typing alt+→); it tells you the IP address and default username and password for the installed GitLab. +The other installation options are: -[[bitnami]] -.The Bitnami GitLab virtual machine login screen. -image::images/bitnami.png[The Bitnami GitLab virtual machine login screen.] +* GitLab Helm chart, for use with Kubernetes. +* Dockerized GitLab packages for use with Docker. +* From the source files. +* Cloud providers such as AWS, Google Cloud Platform, Azure, OpenShift and Digital Ocean. -For anything else, follow the guidance in the GitLab Community Edition readme, which can be found at https://gitlab.com/gitlab-org/gitlab-ce/tree/master[]. -There you'll find assistance for installing GitLab using Chef recipes, a virtual machine on Digital Ocean, and RPM and DEB packages (which, as of this writing, are in beta). -There's also ``unofficial'' guidance on getting GitLab running with non-standard operating systems and databases, a fully-manual installation script, and many other topics. +For more information read the https://gitlab.com/gitlab-org/gitlab-foss/-/blob/master/README.md[GitLab Community Edition (CE) readme^]. ==== Administration GitLab's administration interface is accessed over the web. -Simply point your browser to the hostname or IP address where GitLab is installed, and log in as an admin user. -The default username is `admin@local.host`, and the default password is `5iveL!fe` (which you will be prompted to change as soon as you enter it). -Once logged in, click the ``Admin area'' icon in the menu at the top right. +Simply point your browser to the hostname or IP address where GitLab is installed, and log in as the `root` user. +The password will depend on your installation type but by default, Omnibus GitLab automatically generates a password for and stores it to /etc/gitlab/initial_root_password for at least 24 hours. +Follow the documentation for more details. +After you've logged in, click the "`Admin area`" icon in the menu at the top right. [[gitlab_menu]] -.The ``Admin area'' item in the GitLab menu. -image::images/gitlab-menu.png[The ``Admin area'' item in the GitLab menu.] +.The "`Admin area`" item in the GitLab menu +image::images/gitlab-menu.png[The “Admin area” item in the GitLab menu] ===== Users -Users in GitLab are accounts that correspond to people. -User accounts don't have a lot of complexity; mainly it's a collection of personal information attached to login data. -Each user account comes with a *namespace*, which is a logical grouping of projects that belong to that user. -If the user +jane+ had a project named +project+, that project's url would be http://server/jane/project[]. +Everybody using your GitLab server must have a user account. +User accounts are quite simple, they mainly contain personal information attached to login data. +Each user account has a *namespace*, which is a logical grouping of projects that belong to that user. +If the user +jane+ had a project named +project+, that project's URL would be `http://server/jane/project`. [[gitlab_users]] -.The GitLab user administration screen. -image::images/gitlab-users.png[The GitLab user administration screen.] +.The GitLab user administration screen +image::images/gitlab-users.png[The GitLab user administration screen] -Removing a user can be done in two ways. -``Blocking'' a user prevents them from logging into the GitLab instance, but all of the data under that user's namespace will be preserved, and commits signed with that user's email address will still link back to their profile. +You can remove a user account in two ways: +"`Blocking`" a user prevents them from logging into the GitLab instance, but all of the data under that user's namespace will be preserved, and commits signed with that user's email address will still link back to their profile. -``Destroying'' a user, on the other hand, completely removes them from the database and filesystem. +"`Destroying`" a user, on the other hand, completely removes them from the database and filesystem. All projects and data in their namespace is removed, and any groups they own will also be removed. -This is obviously a much more permanent and destructive action, and its uses are rare. +This is obviously a much more permanent and destructive action, and you will rarely need it. [[_gitlab_groups_section]] ===== Groups -A GitLab group is an assemblage of projects, along with data about how users can access those projects. -Each group has a project namespace (the same way that users do), so if the group +training+ has a project +materials+, its url would be http://server/training/materials[]. +A GitLab group is a collection of projects, along with data about how users can access those projects. +Each group has a project namespace (the same way that users do), so if the group +training+ has a project +materials+, its URL would be `http://server/training/materials`. [[gitlab_groups]] -.The GitLab group administration screen. -image::images/gitlab-groups.png[The GitLab group administration screen.] +.The GitLab group administration screen +image::images/gitlab-groups.png[The GitLab group administration screen] Each group is associated with a number of users, each of which has a level of permissions for the group's projects and the group itself. -These range from ``Guest'' (issues and chat only) to ``Owner'' (full control of the group, its members, and its projects). +These range from "`Guest`" (issues and chat only) to "`Owner`" (full control of the group, its members, and its projects). The types of permissions are too numerous to list here, but GitLab has a helpful link on the administration screen. ===== Projects A GitLab project roughly corresponds to a single Git repository. Every project belongs to a single namespace, either a user or a group. -If the project belongs to a user, the owner of the project has direct control over who has access to the project; if the project belongs to a group, the group's user-level permissions will also take effect. +If the project belongs to a user, the owner of the project has direct control over who has access to the project; if the project belongs to a group, the group's user-level permissions will take effect. -Every project also has a visibility level, which controls who has read access to that project's pages and repository. +Every project has a visibility level, which controls who has read access to that project's pages and repository. If a project is _Private_, the project's owner must explicitly grant access to specific users. An _Internal_ project is visible to any logged-in user, and a _Public_ project is visible to anyone. Note that this controls both `git fetch` access as well as access to the web UI for that project. @@ -86,10 +85,10 @@ This is a great way to connect your Git repositories and GitLab instance to the ==== Basic Usage The first thing you'll want to do with GitLab is create a new project. -This is accomplished by clicking the ``+'' icon on the toolbar. +You can do this by clicking on the "`+`" icon on the toolbar. You'll be asked for the project's name, which namespace it should belong to, and what its visibility level should be. -Most of what you specify here isn't permanent, and can be re-adjusted later through the settings interface. -Click ``Create Project'', and you're done. +Most of what you specify here isn't permanent, and can be changed later through the settings interface. +Click "`Create Project`", and you're done. Once the project exists, you'll probably want to connect it with a local Git repository. Each project is accessible over HTTPS or SSH, either of which can be used to configure a Git remote. @@ -113,14 +112,14 @@ Each project's home page shows recent activity, and links along the top will lea ==== Working Together -The simplest way of working together on a GitLab project is by giving another user direct push access to the Git repository. -You can add a user to a project by going to the ``Members'' section of that project's settings, and associating the new user with an access level (the different access levels are discussed a bit in <<_gitlab_groups_section>>). -By giving a user an access level of ``Developer'' or above, that user can push commits and branches directly to the repository with impunity. +The simplest way of working together on a GitLab project is by giving each user direct push access to the Git repository. +You can add a user to a project by going to the "`Members`" section of that project's settings, and associating the new user with an access level (the different access levels are discussed a bit in <<_gitlab_groups_section>>). +By giving a user an access level of "`Developer`" or above, that user can push commits and branches directly to the repository. Another, more decoupled way of collaboration is by using merge requests. This feature enables any user that can see a project to contribute to it in a controlled way. Users with direct access can simply create a branch, push commits to it, and open a merge request from their branch back into `master` or any other branch. -Users who don't have push permissions for a repository can ``fork'' it (create their own copy), push commits to _that_ copy, and open a merge request from their fork back to the main project. +Users who don't have push permissions for a repository can "`fork`" it to create their own copy, push commits to _their_ copy, and open a merge request from their fork back to the main project. This model allows the owner to be in full control of what goes into the repository and when, while allowing contributions from untrusted users. Merge requests and issues are the main units of long-lived discussion in GitLab. @@ -128,4 +127,4 @@ Each merge request allows a line-by-line discussion of the proposed change (whic Both can be assigned to users, or organized into milestones. This section is focused mainly on the Git-related features of GitLab, but as a mature project, it provides many other features to help your team work together, such as project wikis and system maintenance tools. -One benefit to GitLab is that, once the server is set up and running, you'll rarely need to tweak a configuration file or access the server via SSH; most administration and general usage can be accomplished through the in-browser interface. +One benefit to GitLab is that, once the server is set up and running, you'll rarely need to tweak a configuration file or access the server via SSH; most administration and general usage can be done through the in-browser interface. diff --git a/book/04-git-server/sections/gitweb.asc b/book/04-git-server/sections/gitweb.asc index b0c4572df..1565dc498 100644 --- a/book/04-git-server/sections/gitweb.asc +++ b/book/04-git-server/sections/gitweb.asc @@ -5,12 +5,12 @@ Now that you have basic read/write and read-only access to your project, you may Git comes with a CGI script called GitWeb that is sometimes used for this. [[gitweb]] -.The GitWeb web-based user interface. -image::images/git-instaweb.png[The GitWeb web-based user interface.] +.The GitWeb web-based user interface +image::images/git-instaweb.png[The GitWeb web-based user interface] If you want to check out what GitWeb would look like for your project, Git comes with a command to fire up a temporary instance if you have a lightweight web server on your system like `lighttpd` or `webrick`. On Linux machines, `lighttpd` is often installed, so you may be able to get it to run by typing `git instaweb` in your project directory. -If you're running a Mac, Leopard comes preinstalled with Ruby, so `webrick` may be your best bet. +If you're running macOS, Leopard comes preinstalled with Ruby, so `webrick` may be your best bet. To start `instaweb` with a non-lighttpd handler, you can run it with the `--httpd` option.(((git commands, instaweb))) [source,console] @@ -36,7 +36,7 @@ First, you need to get the Git source code, which GitWeb comes with, and generat [source,console] ---- -$ git clone git://git.kernel.org/pub/scm/git/git.git +$ git clone https://git.kernel.org/pub/scm/git/git.git $ cd git/ $ make GITWEB_PROJECTROOT="/srv/git" prefix=/usr gitweb SUBDIR gitweb diff --git a/book/04-git-server/sections/hosted.asc b/book/04-git-server/sections/hosted.asc index 6828f64e5..54eb79334 100644 --- a/book/04-git-server/sections/hosted.asc +++ b/book/04-git-server/sections/hosted.asc @@ -2,9 +2,9 @@ If you don't want to go through all of the work involved in setting up your own Git server, you have several options for hosting your Git projects on an external dedicated hosting site. Doing so offers a number of advantages: a hosting site is generally quick to set up and easy to start projects on, and no server maintenance or monitoring is involved. -Even if you set up and run your own server internally, you may still want to use a public hosting site for your open source code – it's generally easier for the open source community to find and help you with. +Even if you set up and run your own server internally, you may still want to use a public hosting site for your open source code -- it's generally easier for the open source community to find and help you with. These days, you have a huge number of hosting options to choose from, each with different advantages and disadvantages. -To see an up-to-date list, check out the GitHosting page on the main Git wiki at https://git.wiki.kernel.org/index.php/GitHosting[] +To see an up-to-date list, check out the GitHosting page on the main Git wiki at https://archive.kernel.org/oldwiki/git.wiki.kernel.org/index.php/GitHosting.html[^]. We'll cover using GitHub in detail in <>, as it is the largest Git host out there and you may need to interact with projects hosted on it in any case, but there are dozens more to choose from should you not want to set up your own Git server. diff --git a/book/04-git-server/sections/protocols.asc b/book/04-git-server/sections/protocols.asc index a3f5305e0..ff226d1e6 100644 --- a/book/04-git-server/sections/protocols.asc +++ b/book/04-git-server/sections/protocols.asc @@ -7,7 +7,7 @@ Here we'll discuss what they are and in what basic circumstances you would want (((protocols, local))) The most basic is the _Local protocol_, in which the remote repository is in another directory on the same host. -This is often used if everyone on your team has access to a shared filesystem such as an NFS mount, or in the less likely case that everyone logs in to the same computer. +This is often used if everyone on your team has access to a shared filesystem such as an https://en.wikipedia.org/wiki/Network_File_System[NFS^] mount, or in the less likely case that everyone logs in to the same computer. The latter wouldn't be ideal, because all your code repository instances would reside on the same computer, making a catastrophic loss much more likely. If you have a shared mounted filesystem, then you can clone, push to, and pull from a local file-based repository. @@ -61,7 +61,7 @@ A local repository is fast only if you have fast access to the data. A repository on NFS is often slower than the repository over SSH on the same server, allowing Git to run off local disks on each system. Finally, this protocol does not protect the repository against accidental damage. -Every user has full shell access to the ``remote'' directory, and there is nothing preventing them from changing or removing internal Git files and corrupting the repository. +Every user has full shell access to the "`remote`" directory, and there is nothing preventing them from changing or removing internal Git files and corrupting the repository. ==== The HTTP Protocols @@ -82,7 +82,7 @@ Instead of having to set up different URLs for these things, you can now use a s If you try to push and the repository requires authentication (which it normally should), the server can prompt for a username and password. The same goes for read access. -In fact, for services like GitHub, the URL you use to view the repository online (for example, https://github.com/schacon/simplegit[]) is the same URL you can use to clone and, if you have access, push over. +In fact, for services like GitHub, the URL you use to view the repository online (for example, https://github.com/schacon/simplegit[^]) is the same URL you can use to clone and, if you have access, push over. ===== Dumb HTTP @@ -90,7 +90,7 @@ In fact, for services like GitHub, the URL you use to view the repository online If the server does not respond with a Git HTTP smart service, the Git client will try to fall back to the simpler _Dumb_ HTTP protocol. The Dumb protocol expects the bare Git repository to be served like normal files from the web server. The beauty of Dumb HTTP is the simplicity of setting it up. -Basically, all you have to do is put a bare Git repository under your HTTP document root and set up a specific `post-update` hook, and you're done (See <>). +Basically, all you have to do is put a bare Git repository under your HTTP document root and set up a specific `post-update` hook, and you're done (see <>). At that point, anyone who can access the web server under which you put the repository can also clone your repository. To allow read access to your repository over HTTP, do something like this: @@ -105,7 +105,7 @@ $ chmod a+x hooks/post-update That's all.(((hooks, post-update))) The `post-update` hook that comes with Git by default runs the appropriate command (`git update-server-info`) to make HTTP fetching and cloning work properly. -This command is run when you push to this repository (over SSH perhaps); then, other people can clone via something like +This command is run when you push to this repository (over SSH perhaps); then, other people can clone via something like: [source,console] ---- @@ -129,7 +129,7 @@ It is also a very fast and efficient protocol, similar to the SSH one. You can also serve your repositories read-only over HTTPS, which means you can encrypt the content transfer; or you can go so far as to make the clients use specific signed SSL certificates. -Another nice thing is that HTTPS are such commonly used protocols that corporate firewalls are often set up to allow traffic through these ports. +Another nice thing is that HTTP and HTTPS are such commonly used protocols that corporate firewalls are often set up to allow traffic through their ports. ===== The Cons @@ -175,14 +175,14 @@ Last, like the HTTPS, Git and Local protocols, SSH is efficient, making the data The negative aspect of SSH is that it doesn't support anonymous access to your Git repository. If you're using SSH, people _must_ have SSH access to your machine, even in a read-only capacity, which doesn't make SSH conducive to open source projects for which people might simply want to clone your repository to examine it. If you're using it only within your corporate network, SSH may be the only protocol you need to deal with. -If you want to allow anonymous read-only access to your projects and also want to use SSH, you’ll have to set up SSH for you to push over but something else for others to fetch from. +If you want to allow anonymous read-only access to your projects and also want to use SSH, you'll have to set up SSH for you to push over but something else for others to fetch from. ==== The Git Protocol (((protocols, git))) -Next is the Git protocol. -This is a special daemon that comes packaged with Git; it listens on a dedicated port (9418) that provides a service similar to the SSH protocol, but with absolutely no authentication. -In order for a repository to be served over the Git protocol, you must create a `git-daemon-export-ok` file -- the daemon won't serve a repository without that file in it -- but other than that there is no security. +Finally, we have the Git protocol. +This is a special daemon that comes packaged with Git; it listens on a dedicated port (9418) that provides a service similar to the SSH protocol, but with absolutely no authentication or cryptography. +In order for a repository to be served over the Git protocol, you must create a `git-daemon-export-ok` file -- the daemon won't serve a repository without that file in it -- but, other than that, there is no security. Either the Git repository is available for everyone to clone, or it isn't. This means that there is generally no pushing over this protocol. You can enable push access but, given the lack of authentication, anyone on the internet who finds your project's URL could push to that project. @@ -191,15 +191,21 @@ Suffice it to say that this is rare. ===== The Pros The Git protocol is often the fastest network transfer protocol available. -If you’re serving a lot of traffic for a public project or serving a very large project that doesn't require user authentication for read access, it’s likely that you'll want to set up a Git daemon to serve your project. +If you're serving a lot of traffic for a public project or serving a very large project that doesn't require user authentication for read access, it's likely that you'll want to set up a Git daemon to serve your project. It uses the same data-transfer mechanism as the SSH protocol but without the encryption and authentication overhead. ===== The Cons -The downside of the Git protocol is the lack of authentication. -It's generally undesirable for the Git protocol to be the only access to your project. -Generally, you'll pair it with SSH or HTTPS access for the few developers who have push (write) access and have everyone else use `git://` for read-only access. +Due to the lack of TLS or other cryptography, cloning over `git://` might lead to an arbitrary code execution vulnerability, and should therefore be avoided unless you know what you are doing. + +* If you run `git clone git://example.com/project.git`, an attacker who controls e.g your router can modify the repo you just cloned, inserting malicious code into it. + If you then compile/run the code you just cloned, you will execute the malicious code. + Running `git clone http://example.com/project.git` should be avoided for the same reason. +* Running `git clone https://example.com/project.git` does not suffer from the same problem (unless the attacker can provide a TLS certificate for example.com). + Running `git clone git@example.com:project.git` only suffers from this problem if you accept a wrong SSH key fingerprint. + +It also has no authentication, i.e. anyone can clone the repo (although this is often exactly what you want). It's also probably the most difficult protocol to set up. -It must run its own daemon, which requires `xinetd` configuration or the like, which isn't always a walk in the park. +It must run its own daemon, which requires `xinetd` or `systemd` configuration or the like, which isn't always a walk in the park. It also requires firewall access to port 9418, which isn't a standard port that corporate firewalls always allow. Behind big corporate firewalls, this obscure port is commonly blocked. diff --git a/book/04-git-server/sections/setting-up-server.asc b/book/04-git-server/sections/setting-up-server.asc index e271653d9..bbb082956 100644 --- a/book/04-git-server/sections/setting-up-server.asc +++ b/book/04-git-server/sections/setting-up-server.asc @@ -10,7 +10,7 @@ We also assume you're running a standard Linux distribution like Ubuntu. A good deal of what is described here can be automated by using the `ssh-copy-id` command, rather than manually copying and installing public keys. ==== -First, you create a `git` user and a `.ssh` directory for that user. +First, you create a `git` user account and a `.ssh` directory for that user. [source,console] ---- @@ -67,7 +67,7 @@ If you're running it internally, and you set up DNS for `gitserver` to point to $ cd myproject $ git init $ git add . -$ git commit -m 'initial commit' +$ git commit -m 'Initial commit' $ git remote add origin git@gitserver:/srv/git/project.git $ git push origin master ---- @@ -79,25 +79,25 @@ At this point, the others can clone it down and push changes back up just as eas $ git clone git@gitserver:/srv/git/project.git $ cd project $ vim README -$ git commit -am 'fix for the README file' +$ git commit -am 'Fix for README file' $ git push origin master ---- With this method, you can quickly get a read/write Git server up and running for a handful of developers. You should note that currently all these users can also log into the server and get a shell as the `git` user. -If you want to restrict that, you will have to change the shell to something else in the `passwd` file. +If you want to restrict that, you will have to change the shell to something else in the `/etc/passwd` file. -You can easily restrict the `git` user to only doing Git activities with a limited shell tool called `git-shell` that comes with Git. -If you set this as your `git` user's login shell, then the `git` user can't have normal shell access to your server. -To use this, specify `git-shell` instead of bash or csh for your user's login shell. -To do so, you must first add `git-shell` to `/etc/shells` if it's not already there: +You can easily restrict the `git` user account to only Git-related activities with a limited shell tool called `git-shell` that comes with Git. +If you set this as the `git` user account's login shell, then that account can't have normal shell access to your server. +To use this, specify `git-shell` instead of `bash` or `csh` for that account's login shell. +To do so, you must first add the full pathname of the `git-shell` command to `/etc/shells` if it's not already there: [source,console] ---- -$ cat /etc/shells # see if `git-shell` is already in there. If not... +$ cat /etc/shells # see if git-shell is already in there. If not... $ which git-shell # make sure git-shell is installed on your system. -$ sudo vim /etc/shells # and add the path to git-shell from last command +$ sudo -e /etc/shells # and add the path to git-shell from last command ---- Now you can edit the shell for a user using `chsh -s `: @@ -107,7 +107,7 @@ Now you can edit the shell for a user using `chsh -s `: $ sudo chsh git -s $(which git-shell) ---- -Now, the `git` user can only use the SSH connection to push and pull Git repositories and can't shell onto the machine. +Now, the `git` user can still use the SSH connection to push and pull Git repositories but can't shell onto the machine. If you try, you'll see a login rejection like this: [source,console] @@ -118,6 +118,31 @@ hint: ~/git-shell-commands should exist and have read and execute access. Connection to gitserver closed. ---- +At this point, users are still able to use SSH port forwarding to access any host the git server is able to reach. +If you want to prevent that, you can edit the `authorized_keys` file and prepend the following options to each key you'd like to restrict: + +[source,console] +---- +no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty +---- + +The result should look like this: + +[source,console] +---- +$ cat ~/.ssh/authorized_keys +no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa +AAAAB3NzaC1yc2EAAAADAQABAAABAQCB007n/ww+ouN4gSLKssMxXnBOvf9LGt4LojG6rs6h +PB09j9R/T17/x4lhJA0F3FR1rP6kYBRsWj2aThGw6HXLm9/5zytK6Ztg3RPKK+4kYjh6541N +YsnEAZuXz0jTTyAUfrtU3Z5E003C4oxOj6H0rfIF1kKI9MAQLMdpGW1GYEIgS9EzSdfd8AcC +IicTDWbqLAcU4UpkaX8KyGlLwsNuuGztobF8m72ALC/nLF6JLtPofwFBlgc+myivO7TCUSBd +LQlgMVOFq1I2uPWQOkOWQAHukEOmfjy2jctxSDBQ220ymjaNsHT4kgtZg2AYYgPqdAv8JggJ +ICUvax2T9va5 gsg-keypair + +no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa +AAAAB3NzaC1yc2EAAAADAQABAAABAQDEwENNMomTboYI+LJieaAY16qiXiH3wuvENhBG... +---- + Now Git network commands will still work just fine but the users won't be able to get a shell. As the output states, you can also set up a directory in the `git` user's home directory that customizes the `git-shell` command a bit. For instance, you can restrict the Git commands that the server will accept or you can customize the message that users see if they try to SSH in like that. diff --git a/book/04-git-server/sections/smart-http.asc b/book/04-git-server/sections/smart-http.asc index 43956dda8..753d34cd5 100644 --- a/book/04-git-server/sections/smart-http.asc +++ b/book/04-git-server/sections/smart-http.asc @@ -18,7 +18,7 @@ $ a2enmod cgi alias env This also enables the `mod_cgi`, `mod_alias`, and `mod_env` modules, which are all needed for this to work properly. -You’ll also need to set the Unix user group of the `/srv/git` directories to `www-data` so your web server can read- and write-access the repositories, because the Apache instance running the CGI script will (by default) be running as that user: +You'll also need to set the Unix user group of the `/srv/git` directories to `www-data` so your web server can read- and write-access the repositories, because the Apache instance running the CGI script will (by default) be running as that user: [source,console] ---- @@ -50,7 +50,7 @@ Finally you'll want to tell Apache to allow requests to `git-http-backend` and m ---- That will require you to create a `.htpasswd` file containing the passwords of all the valid users. -Here is an example of adding a ``schacon'' user to the file: +Here is an example of adding a "`schacon`" user to the file: [source,console] ---- @@ -68,5 +68,5 @@ You can do this with nearly any CGI-capable web server, so go with the one that [NOTE] ==== -For more information on configuring authentication in Apache, check out the Apache docs here: http://httpd.apache.org/docs/current/howto/auth.html[] +For more information on configuring authentication in Apache, check out the Apache docs here: https://httpd.apache.org/docs/current/howto/auth.html[^]. ==== diff --git a/book/05-distributed-git/sections/contributing.asc b/book/05-distributed-git/sections/contributing.asc index 1ecade9ef..2c6b08516 100644 --- a/book/05-distributed-git/sections/contributing.asc +++ b/book/05-distributed-git/sections/contributing.asc @@ -41,8 +41,8 @@ The Git project provides a document that lays out a number of good tips for crea First, your submissions should not contain any whitespace errors. Git provides an easy way to check for this -- before you commit, run `git diff --check`, which identifies possible whitespace errors and lists them for you. -.Output of `git diff --check`. -image::images/git-diff-check.png[Output of `git diff --check`.] +.Output of `git diff --check` +image::images/git-diff-check.png[Output of `git diff --check`] If you run that command before committing, you can tell if you're about to commit whitespace issues that may annoy other developers. @@ -59,30 +59,32 @@ The last thing to keep in mind is the commit message. Getting in the habit of creating quality commit messages makes using and collaborating with Git a lot easier. As a general rule, your messages should start with a single line that's no more than about 50 characters and that describes the changeset concisely, followed by a blank line, followed by a more detailed explanation. The Git project requires that the more detailed explanation include your motivation for the change and contrast its implementation with previous behavior -- this is a good guideline to follow. -It's also a good idea to use the imperative present tense in these messages. -In other words, use commands. -Instead of ``I added tests for'' or ``Adding tests for,'' use ``Add tests for.'' -Here is a http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[template originally written by Tim Pope]: +Write your commit message in the imperative: "Fix bug" and not "Fixed bug" or "Fixes bug." +Here is a template you can follow, which we've lightly adapted from one https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[originally written by Tim Pope^]: [source,text] ---- -Short (50 chars or less) summary of changes +Capitalized, short (50 chars or less) summary -More detailed explanatory text, if necessary. Wrap it to -about 72 characters or so. In some contexts, the first -line is treated as the subject of an email and the rest of -the text as the body. The blank line separating the -summary from the body is critical (unless you omit the body -entirely); tools like rebase can get confused if you run -the two together. +More detailed explanatory text, if necessary. Wrap it to about 72 +characters or so. In some contexts, the first line is treated as the +subject of an email and the rest of the text as the body. The blank +line separating the summary from the body is critical (unless you omit +the body entirely); tools like rebase will confuse you if you run the +two together. + +Write your commit message in the imperative: "Fix bug" and not "Fixed bug" +or "Fixes bug." This convention matches up with commit messages generated +by commands like git merge and git revert. Further paragraphs come after blank lines. - - Bullet points are okay, too +- Bullet points are okay, too + +- Typically a hyphen or asterisk is used for the bullet, followed by a + single space, with blank lines in between, but conventions vary here - - Typically a hyphen or asterisk is used for the bullet, - preceded by a single space, with blank lines in - between, but conventions vary here +- Use a hanging indent ---- If all your commit messages follow this model, things will be much easier for you and the developers with whom you collaborate. @@ -101,14 +103,14 @@ In short, do as we say, not as we do. (((contributing, private small team))) The simplest setup you're likely to encounter is a private project with one or two other developers. -``Private,'' in this context, means closed-source -- not accessible to the outside world. +"`Private,`" in this context, means closed-source -- not accessible to the outside world. You and the other developers all have push access to the repository. In this environment, you can follow a workflow similar to what you might do when using Subversion or another centralized system. You still get the advantages of things like offline committing and vastly simpler branching and merging, but the workflow can be very similar; the main difference is that merges happen client-side rather than on the server at commit time. Let's see what it might look like when two developers start to work together with a shared repository. The first developer, John, clones the repository, makes a change, and commits locally. -(The protocol messages have been replaced with `...` in these examples to shorten them somewhat.) +The protocol messages have been replaced with `...` in these examples to shorten them somewhat. [source,console] ---- @@ -118,8 +120,8 @@ Cloning into 'simplegit'... ... $ cd simplegit/ $ vim lib/simplegit.rb -$ git commit -am 'remove invalid default value' -[master 738ee87] remove invalid default value +$ git commit -am 'Remove invalid default value' +[master 738ee87] Remove invalid default value 1 files changed, 1 insertions(+), 1 deletions(-) ---- @@ -133,8 +135,8 @@ Cloning into 'simplegit'... ... $ cd simplegit/ $ vim TODO -$ git commit -am 'add reset task' -[master fbff5bc] add reset task +$ git commit -am 'Add reset task' +[master fbff5bc] Add reset task 1 files changed, 1 insertions(+), 0 deletions(-) ---- @@ -152,7 +154,7 @@ To jessica@githost:simplegit.git The last line of the output above shows a useful return message from the push operation. The basic format is `.. fromref -> toref`, where `oldref` means the old reference, `newref` means the new reference, `fromref` is the name of the local reference being pushed, and `toref` is the name of the remote reference being updated. You'll see similar output like this below in the discussions, so having a basic idea of the meaning will help in understanding the various states of the repositories. -More details are available in the documentation for https://git-scm.com/docs/git-push[git-push]. +More details are available in the documentation for https://git-scm.com/docs/git-push[git-push^]. Continuing with this example, shortly afterwards, John makes some changes, commits them to his local repository, and tries to push them to the same server: @@ -182,8 +184,8 @@ From john@githost:simplegit At this point, John's local repository looks something like this: -.John's divergent history. -image::images/small-team-1.png[John's divergent history.] +.John's divergent history +image::images/small-team-1.png[John's divergent history] Now John can merge Jessica's work that he fetched into his own local work: @@ -197,8 +199,8 @@ Merge made by the 'recursive' strategy. As long as that local merge goes smoothly, John's updated history will now look like this: -.John's repository after merging `origin/master`. -image::images/small-team-2.png[John's repository after merging `origin/master`.] +.John's repository after merging `origin/master` +image::images/small-team-2.png[John's repository after merging `origin/master`] At this point, John might want to test this new code to make sure none of Jessica's work affects any of his and, as long as everything seems fine, he can finally push the new merged work up to the server: @@ -212,14 +214,14 @@ To john@githost:simplegit.git In the end, John's commit history will look like this: -.John's history after pushing to the `origin` server. -image::images/small-team-3.png[John's history after pushing to the `origin` server.] +.John's history after pushing to the `origin` server +image::images/small-team-3.png[John's history after pushing to the `origin` server] In the meantime, Jessica has created a new topic branch called `issue54`, and made three commits to that branch. She hasn't fetched John's changes yet, so her commit history looks like this: -.Jessica's topic branch. -image::images/small-team-4.png[Jessica's topic branch.] +.Jessica's topic branch +image::images/small-team-4.png[Jessica's topic branch] Suddenly, Jessica learns that John has pushed some new work to the server and she wants to take a look at it, so she can fetch all new content from the server that she does not yet have with: @@ -235,8 +237,8 @@ From jessica@githost:simplegit That pulls down the work John has pushed up in the meantime. Jessica's history now looks like this: -.Jessica's history after fetching John's changes. -image::images/small-team-5.png[Jessica's history after fetching John's changes.] +.Jessica's history after fetching John's changes +image::images/small-team-5.png[Jessica's history after fetching John's changes] Jessica thinks her topic branch is ready, but she wants to know what part of John's fetched work she has to merge into her work so that she can push. She runs `git log` to find out: @@ -248,18 +250,18 @@ commit 738ee872852dfaa9d6634e0dea7a324040193016 Author: John Smith Date: Fri May 29 16:01:27 2009 -0700 - remove invalid default value + Remove invalid default value ---- -The `issue54..origin/master` syntax is a log filter that asks Git to display only those commits that are on the latter branch (in this case `origin/master`) that are not on the first branch (in this case `issue54`). +The `issue54..origin/master` syntax is a log filter that asks Git to display only those commits that are on the latter branch (in this case `origin/master`) and that are not on the first branch (in this case `issue54`). We'll go over this syntax in detail in <>. From the above output, we can see that there is a single commit that John has made that Jessica has not merged into her local work. If she merges `origin/master`, that is the single commit that will modify her local work. -Now, Jessica can merge her topic work into her master branch, merge John's work (`origin/master`) into her `master` branch, and then push back to the server again. +Now, Jessica can merge her topic work into her `master` branch, merge John's work (`origin/master`) into her `master` branch, and then push back to the server again. -First (having committed all of the work on her `issue54` topic branch), Jessica switches back to her master branch in preparation for integrating all this work: +First (having committed all of the work on her `issue54` topic branch), Jessica switches back to her `master` branch in preparation for integrating all this work: [source,console] ---- @@ -296,8 +298,8 @@ Merge made by the 'recursive' strategy. Everything merges cleanly, and Jessica's history now looks like this: -.Jessica's history after merging John's changes. -image::images/small-team-6.png[Jessica's history after merging John's changes.] +.Jessica's history after merging John's changes +image::images/small-team-6.png[Jessica's history after merging John's changes] Now `origin/master` is reachable from Jessica's `master` branch, so she should be able to successfully push (assuming John hasn't pushed even more changes in the meantime): @@ -311,16 +313,16 @@ To jessica@githost:simplegit.git Each developer has committed a few times and merged each other's work successfully. -.Jessica's history after pushing all changes back to the server. -image::images/small-team-7.png[Jessica's history after pushing all changes back to the server.] +.Jessica's history after pushing all changes back to the server +image::images/small-team-7.png[Jessica's history after pushing all changes back to the server] That is one of the simplest workflows. You work for a while (generally in a topic branch), and merge that work into your `master` branch when it's ready to be integrated. When you want to share that work, you fetch and merge your `master` from `origin/master` if it has changed, and finally push to the `master` branch on the server. The general sequence is something like this: -.General sequence of events for a simple multiple-developer Git workflow. -image::images/small-team-flow.png[General sequence of events for a simple multiple-developer Git workflow.] +.General sequence of events for a simple multiple-developer Git workflow +image::images/small-team-flow.png[General sequence of events for a simple multiple-developer Git workflow] ==== Private Managed Team @@ -328,7 +330,7 @@ image::images/small-team-flow.png[General sequence of events for a simple multip In this next scenario, you'll look at contributor roles in a larger private group. You'll learn how to work in an environment where small groups collaborate on features, after which those team-based contributions are integrated by another party. -Let's say that John and Jessica are working together on one feature (call this ``featureA''), while Jessica and a third developer, Josie, are working on a second (say, ``featureB''). +Let's say that John and Jessica are working together on one feature (call this "`featureA`"), while Jessica and a third developer, Josie, are working on a second (say, "`featureB`"). In this case, the company is using a type of integration-manager workflow where the work of the individual groups is integrated only by certain engineers, and the `master` branch of the main repo can be updated only by those engineers. In this scenario, all work is done in team-based branches and pulled together by the integrators later. @@ -342,8 +344,8 @@ She creates a new branch for the feature and does some work on it there: $ git checkout -b featureA Switched to a new branch 'featureA' $ vim lib/simplegit.rb -$ git commit -am 'add limit to log function' -[featureA 3300904] add limit to log function +$ git commit -am 'Add limit to log function' +[featureA 3300904] Add limit to log function 1 files changed, 1 insertions(+), 1 deletions(-) ---- @@ -375,21 +377,21 @@ Now, Jessica makes a couple of commits on the `featureB` branch: [source,console] ---- $ vim lib/simplegit.rb -$ git commit -am 'made the ls-tree function recursive' -[featureB e5b0fdc] made the ls-tree function recursive +$ git commit -am 'Make ls-tree function recursive' +[featureB e5b0fdc] Make ls-tree function recursive 1 files changed, 1 insertions(+), 1 deletions(-) $ vim lib/simplegit.rb -$ git commit -am 'add ls-files' -[featureB 8512791] add ls-files +$ git commit -am 'Add ls-files' +[featureB 8512791] Add ls-files 1 files changed, 5 insertions(+), 0 deletions(-) ---- Jessica's repository now looks like this: -.Jessica's initial commit history. -image::images/managed-team-1.png[Jessica's initial commit history.] +.Jessica's initial commit history +image::images/managed-team-1.png[Jessica's initial commit history] -She's ready to push her work, but gets an email from Josie that a branch with some initial ``featureB'' work on it was already pushed to the server as the `featureBee` branch. +She's ready to push her work, but gets an email from Josie that a branch with some initial "`featureB`" work on it was already pushed to the server as the `featureBee` branch. Jessica needs to merge those changes with her own before she can push her work to the server. Jessica first fetches Josie's changes with `git fetch`: @@ -412,7 +414,7 @@ Merge made by the 'recursive' strategy. 1 files changed, 4 insertions(+), 0 deletions(-) ---- -At this point, Jessica wants to push all of this merged ``featureB'' work back to the server, but she doesn't want to simply push her own `featureB` branch. +At this point, Jessica wants to push all of this merged "`featureB`" work back to the server, but she doesn't want to simply push her own `featureB` branch. Rather, since Josie has already started an upstream `featureBee` branch, Jessica wants to push to _that_ branch, which she does with: [source,console] @@ -447,7 +449,7 @@ commit aad881d154acdaeb2b6b18ea0e827ed8a6d671e6 Author: John Smith Date: Fri May 29 19:57:33 2009 -0700 - changed log output to 30 from 25 + Increase log output to 30 from 25 ---- If Jessica likes what she sees, she can merge John's new work into her local `featureA` branch with: @@ -463,12 +465,12 @@ Fast forward 1 files changed, 9 insertions(+), 1 deletions(-) ---- -Finally, Jessica might want to make a couple minor changes to all that merged content, so she is free to make those changes, commit them to her local `featureA` branch, and push the end result back to the server. +Finally, Jessica might want to make a couple minor changes to all that merged content, so she is free to make those changes, commit them to her local `featureA` branch, and push the end result back to the server: [source,console] ---- -$ git commit -am 'small tweak' -[featureA 774b3ed] small tweak +$ git commit -am 'Add small tweak to merged content' +[featureA 774b3ed] Add small tweak to merged content 1 files changed, 1 insertions(+), 1 deletions(-) $ git push ... @@ -478,21 +480,21 @@ To jessica@githost:simplegit.git Jessica's commit history now looks something like this: -.Jessica's history after committing on a feature branch. -image::images/managed-team-2.png[Jessica's history after committing on a feature branch.] +.Jessica's history after committing on a feature branch +image::images/managed-team-2.png[Jessica's history after committing on a feature branch] At some point, Jessica, Josie, and John inform the integrators that the `featureA` and `featureBee` branches on the server are ready for integration into the mainline. After the integrators merge these branches into the mainline, a fetch will bring down the new merge commit, making the history look like this: -.Jessica's history after merging both her topic branches. -image::images/managed-team-3.png[Jessica's history after merging both her topic branches.] +.Jessica's history after merging both her topic branches +image::images/managed-team-3.png[Jessica's history after merging both her topic branches] Many groups switch to Git because of this ability to have multiple teams working in parallel, merging the different lines of work late in the process. The ability of smaller subgroups of a team to collaborate via remote branches without necessarily having to involve or impede the entire team is a huge benefit of Git. The sequence for the workflow you saw here is something like this: -.Basic sequence of this managed-team workflow. -image::images/managed-team-flow.png[Basic sequence of this managed-team workflow.] +.Basic sequence of this managed-team workflow +image::images/managed-team-flow.png[Basic sequence of this managed-team workflow] [[_public_project]] ==== Forked Public Project @@ -523,7 +525,7 @@ $ git commit You may want to use `rebase -i` to squash your work down to a single commit, or rearrange the work in the commits to make the patch easier for the maintainer to review -- see <> for more information about interactive rebasing. ==== -When your branch work is finished and you're ready to contribute it back to the maintainers, go to the original project page and click the ``Fork'' button, creating your own writable fork of the project. +When your branch work is finished and you're ready to contribute it back to the maintainers, go to the original project page and click the "`Fork`" button, creating your own writable fork of the project. You then need to add this repository URL as a new remote of your local repository; in this example, let's call it `myfork`: [source,console] @@ -532,8 +534,8 @@ $ git remote add myfork ---- You then need to push your new work to this repository. -It's easiest to push the topic branch you're working on to your forked repository, rather than merging that work into your master branch and pushing that. -The reason is that if your work isn't accepted or is cherry-picked, you don't have to rewind your master branch (the Git `cherry-pick` operation is covered in more detail in <>). +It's easiest to push the topic branch you're working on to your forked repository, rather than merging that work into your `master` branch and pushing that. +The reason is that if your work isn't accepted or is cherry-picked, you don't have to rewind your `master` branch (the Git `cherry-pick` operation is covered in more detail in <>). If the maintainers `merge`, `rebase`, or `cherry-pick` your work, you'll eventually get it back via pulling from their repository anyhow. In any event, you can push your work with: @@ -545,7 +547,7 @@ $ git push -u myfork featureA (((git commands, request-pull))) Once your work has been pushed to your fork of the repository, you need to notify the maintainers of the original project that you have work you'd like them to merge. -This is often called a _pull request_, and you typically generate such a request either via the website -- GitHub has its own ``Pull Request'' mechanism that we'll go over in <> -- or you can run the `git request-pull` command and email the subsequent output to the project maintainer manually. +This is often called a _pull request_, and you typically generate such a request either via the website -- GitHub has its own "`Pull Request`" mechanism that we'll go over in <> -- or you can run the `git request-pull` command and email the subsequent output to the project maintainer manually. The `git request-pull` command takes the base branch into which you want your topic branch pulled and the Git repository URL you want them to pull from, and produces a summary of all the changes you're asking to be pulled. For instance, if Jessica wants to send John a pull request, and she's done two commits on the topic branch she just pushed, she can run this: @@ -555,15 +557,15 @@ For instance, if Jessica wants to send John a pull request, and she's done two c $ git request-pull origin/master myfork The following changes since commit 1edee6b1d61823a2de3b09c160d7080b8d1b3a40: Jessica Smith (1): - added a new function + Create new function are available in the git repository at: - git://githost/simplegit.git featureA + https://githost/simplegit.git featureA Jessica Smith (2): - add limit to log function - change log output to 30 from 25 + Add limit to log function + Increase log output to 30 from 25 lib/simplegit.rb | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) @@ -588,8 +590,8 @@ $ git fetch origin Now, each of your topics is contained within a silo -- similar to a patch queue -- that you can rewrite, rebase, and modify without the topics interfering or interdepending on each other, like so: -.Initial commit history with `featureB` work. -image::images/public-small-1.png[Initial commit history with `featureB` work.] +.Initial commit history with `featureB` work +image::images/public-small-1.png[Initial commit history with `featureB` work] Let's say the project maintainer has pulled in a bunch of other patches and tried your first branch, but it no longer cleanly merges. In this case, you can try to rebase that branch on top of `origin/master`, resolve the conflicts for the maintainer, and then resubmit your changes: @@ -604,8 +606,8 @@ $ git push -f myfork featureA This rewrites your history to now look like <>. [[psp_b]] -.Commit history after `featureA` work. -image::images/public-small-2.png[Commit history after `featureA` work.] +.Commit history after `featureA` work +image::images/public-small-2.png[Commit history after `featureA` work] Because you rebased the branch, you have to specify the `-f` to your push command in order to be able to replace the `featureA` branch on the server with a commit that isn't a descendant of it. An alternative would be to push this new work to a different branch on the server (perhaps called `featureAv2`). @@ -630,8 +632,8 @@ Also the `--no-commit` option can be useful to delay the merge commit in case of At this point, you can notify the maintainer that you've made the requested changes, and that they can find those changes in your `featureBv2` branch. -.Commit history after `featureBv2` work. -image::images/public-small-3.png[Commit history after `featureBv2` work.] +.Commit history after `featureBv2` work +image::images/public-small-3.png[Commit history after `featureBv2` work] [[_project_over_email]] ==== Public Project over Email @@ -662,7 +664,7 @@ The nice thing about this is that applying a patch from an email generated with ---- $ git format-patch -M origin/master 0001-add-limit-to-log-function.patch -0002-changed-log-output-to-30-from-25.patch +0002-increase-log-output-to-30-from-25.patch ---- The `format-patch` command prints out the names of the patch files it creates. @@ -675,7 +677,7 @@ $ cat 0001-add-limit-to-log-function.patch From 330090432754092d704da8e76ca5c05c198e71a8 Mon Sep 17 00:00:00 2001 From: Jessica Smith Date: Sun, 6 Apr 2008 10:17:23 -0700 -Subject: [PATCH 1/2] add limit to log function +Subject: [PATCH 1/2] Add limit to log function Limit log functionality to the first 20 @@ -704,7 +706,7 @@ You can also edit these patch files to add more information for the email list t If you add text between the `---` line and the beginning of the patch (the `diff --git` line), the developers can read it, but that content is ignored by the patching process. To email this to a mailing list, you can either paste the file into your email program or send it via a command-line program. -Pasting the text often causes formatting issues, especially with ``smarter'' clients that don't preserve newlines and other whitespace appropriately. +Pasting the text often causes formatting issues, especially with "`smarter`" clients that don't preserve newlines and other whitespace appropriately. Luckily, Git provides a tool to help you send properly formatted patches via IMAP, which may be easier for you. We'll demonstrate how to send a patch via Gmail, which happens to be the email agent we know best; you can read detailed instructions for a number of mail programs at the end of the aforementioned `Documentation/SubmittingPatches` file in the Git source code. @@ -755,8 +757,8 @@ After this is done, you can use `git send-email` to send your patches: [source,console] ---- $ git send-email *.patch -0001-added-limit-to-log-function.patch -0002-changed-log-output-to-30-from-25.patch +0001-add-limit-to-log-function.patch +0002-increase-log-output-to-30-from-25.patch Who should the emails appear to be from? [Jessica Smith ] Emails will be sent from: Jessica Smith Who should the emails be sent to? jessica@example.com @@ -773,7 +775,7 @@ OK. Log says: Sendmail: /usr/sbin/sendmail -i jessica@example.com From: Jessica Smith To: jessica@example.com -Subject: [PATCH 1/2] added limit to log function +Subject: [PATCH 1/2] Add limit to log function Date: Sat, 30 May 2009 13:29:15 -0700 Message-Id: <1243715356-61726-1-git-send-email-jessica@example.com> X-Mailer: git-send-email 1.6.2.rc1.20.g8c5b.dirty @@ -783,8 +785,18 @@ References: Result: OK ---- +[TIP] +==== +For help on configuring your system and email, more tips and tricks, and a sandbox to send a trial patch via email, go to https://git-send-email.io[git-send-email.io^]. +==== + ==== Summary -This section has covered a number of common workflows for dealing with several very different types of Git projects you're likely to encounter, and introduced a couple of new tools to help you manage this process. +In this section, we covered multiple workflows, and talked about the differences between working as part of a small team on closed-source projects vs contributing to a big public project. +You know to check for white-space errors before committing, and can write a great commit message. +You learned how to format patches, and e-mail them to a developer mailing list. +Dealing with merges was also covered in the context of the different workflows. +You are now well prepared to collaborate on any project. + Next, you'll see how to work the other side of the coin: maintaining a Git project. You'll learn how to be a benevolent dictator or integration manager. diff --git a/book/05-distributed-git/sections/distributed-workflows.asc b/book/05-distributed-git/sections/distributed-workflows.asc index 5842250cd..b61289dc1 100644 --- a/book/05-distributed-git/sections/distributed-workflows.asc +++ b/book/05-distributed-git/sections/distributed-workflows.asc @@ -1,21 +1,21 @@ === Distributed Workflows (((workflows))) -Unlike Centralized Version Control Systems (CVCSs), the distributed nature of Git allows you to be far more flexible in how developers collaborate on projects. -In centralized systems, every developer is a node working more or less equally on a central hub. -In Git, however, every developer is potentially both a node and a hub -- that is, every developer can both contribute code to other repositories and maintain a public repository on which others can base their work and which they can contribute to. -This opens a vast range of workflow possibilities for your project and/or your team, so we'll cover a few common paradigms that take advantage of this flexibility. +In contrast with Centralized Version Control Systems (CVCSs), the distributed nature of Git allows you to be far more flexible in how developers collaborate on projects. +In centralized systems, every developer is a node working more or less equally with a central hub. +In Git, however, every developer is potentially both a node and a hub; that is, every developer can both contribute code to other repositories and maintain a public repository on which others can base their work and which they can contribute to. +This presents a vast range of workflow possibilities for your project and/or your team, so we'll cover a few common paradigms that take advantage of this flexibility. We'll go over the strengths and possible weaknesses of each design; you can choose a single one to use, or you can mix and match features from each. ==== Centralized Workflow (((workflows, centralized))) In centralized systems, there is generally a single collaboration model -- the centralized workflow. -One central hub, or _repository_, can accept code, and everyone synchronizes their work to it. -A number of developers are nodes -- consumers of that hub -- and synchronize to that one place. +One central hub, or _repository_, can accept code, and everyone synchronizes their work with it. +A number of developers are nodes -- consumers of that hub -- and synchronize with that centralized location. -.Centralized workflow. -image::images/centralized_workflow.png[Centralized workflow.] +.Centralized workflow +image::images/centralized_workflow.png[Centralized workflow] This means that if two developers clone from the hub and both make changes, the first developer to push their changes back up can do so with no problems. The second developer must merge in the first one's work before pushing changes up, so as not to overwrite the first developer's changes. @@ -23,6 +23,7 @@ This concept is as true in Git as it is in Subversion(((Subversion))) (or any CV If you are already comfortable with a centralized workflow in your company or team, you can easily continue using that workflow with Git. Simply set up a single repository, and give everyone on your team push access; Git won't let users overwrite each other. + Say John and Jessica both start working at the same time. John finishes his change and pushes it to the server. Then Jessica tries to push her changes, but the server rejects them. @@ -37,7 +38,7 @@ With Git's branching model, it's possible for hundreds of developers to successf (((workflows, integration manager))) Because Git allows you to have multiple remote repositories, it's possible to have a workflow where each developer has write access to their own public repository and read access to everyone else's. -This scenario often includes a canonical repository that represents the ``official'' project. +This scenario often includes a canonical repository that represents the "`official`" project. To contribute to that project, you create your own public clone of the project and push your changes to it. Then, you can send a request to the maintainer of the main project to pull in your changes. The maintainer can then add your repository as a remote, test your changes locally, merge them into their branch, and push back to their repository. @@ -51,8 +52,8 @@ The process works as follows (see <>): 6. The maintainer pushes merged changes to the main repository. [[wfdiag_b]] -.Integration-manager workflow. -image::images/integration-manager.png[Integration-manager workflow.] +.Integration-manager workflow +image::images/integration-manager.png[Integration-manager workflow] (((forking))) This is a very common workflow with hub-based tools like GitHub or GitLab, where it's easy to fork a project and push your changes into your fork for everyone to see. @@ -66,7 +67,7 @@ This is a variant of a multiple-repository workflow. It's generally used by huge projects with hundreds of collaborators; one famous example is the Linux kernel. Various integration managers are in charge of certain parts of the repository; they're called _lieutenants_. All the lieutenants have one integration manager known as the benevolent dictator. -The benevolent dictator pushes from his directory to a reference repository from which all the collaborators need to pull. +The benevolent dictator pushes from their directory to a reference repository from which all the collaborators need to pull. The process works like this (see <>): 1. Regular developers work on their topic branch and rebase their work on top of `master`. @@ -76,12 +77,24 @@ The process works like this (see <>): 4. Finally, the dictator pushes that `master` branch to the reference repository so the other developers can rebase on it. [[wfdiag_c]] -.Benevolent dictator workflow. -image::images/benevolent-dictator.png[Benevolent dictator workflow.] +.Benevolent dictator workflow +image::images/benevolent-dictator.png[Benevolent dictator workflow] This kind of workflow isn't common, but can be useful in very big projects, or in highly hierarchical environments. It allows the project leader (the dictator) to delegate much of the work and collect large subsets of code at multiple points before integrating them. +[[_patterns_for_managing_source_code_branches]] +==== Patterns for Managing Source Code Branches + +[NOTE] +==== +Martin Fowler has made a guide "Patterns for Managing Source Code Branches". +This guide covers all the common Git workflows, and explains how/when to use them. +There's also a section comparing high and low integration frequencies. + +https://martinfowler.com/articles/branching-patterns.html[^] +==== + ==== Workflows Summary These are some commonly used workflows that are possible with a distributed system like Git, but you can see that many variations are possible to suit your particular real-world workflow. diff --git a/book/05-distributed-git/sections/maintaining.asc b/book/05-distributed-git/sections/maintaining.asc index a841b7e92..c377bb68d 100644 --- a/book/05-distributed-git/sections/maintaining.asc +++ b/book/05-distributed-git/sections/maintaining.asc @@ -1,17 +1,17 @@ === Maintaining a Project (((maintaining a project))) -In addition to knowing how to effectively contribute to a project, you'll likely need to know how to maintain one. +In addition to knowing how to contribute effectively to a project, you'll likely need to know how to maintain one. This can consist of accepting and applying patches generated via `format-patch` and emailed to you, or integrating changes in remote branches for repositories you've added as remotes to your project. Whether you maintain a canonical repository or want to help by verifying or approving patches, you need to know how to accept work in a way that is clearest for other contributors and sustainable by you over the long run. ==== Working in Topic Branches (((branches, topic))) -When you're thinking of integrating new work, it's generally a good idea to try it out in a topic branch – a temporary branch specifically made to try out that new work. +When you're thinking of integrating new work, it's generally a good idea to try it out in a _topic branch_ -- a temporary branch specifically made to try out that new work. This way, it's easy to tweak a patch individually and leave it if it's not working until you have time to come back to it. If you create a simple branch name based on the theme of the work you're going to try, such as `ruby_client` or something similarly descriptive, you can easily remember it if you have to abandon it for a while and come back later. -The maintainer of the Git project tends to namespace these branches as well – such as `sc/ruby_client`, where `sc` is short for the person who contributed the work. +The maintainer of the Git project tends to namespace these branches as well -- such as `sc/ruby_client`, where `sc` is short for the person who contributed the work. As you'll remember, you can create the branch based off your `master` branch like this: [source,console] @@ -35,7 +35,7 @@ Now you're ready to add the contributed work that you received into this topic b If you receive a patch over email that you need to integrate into your project, you need to apply the patch in your topic branch to evaluate it. There are two ways to apply an emailed patch: with `git apply` or with `git am`. -===== Applying a Patch with apply +===== Applying a Patch with `apply` (((git commands, apply))) If you received the patch from someone who generated it with `git diff` or some variation of the Unix `diff` command (which is not recommended; see the next section), you can apply it with the `git apply` command. @@ -49,15 +49,15 @@ $ git apply /tmp/patch-ruby-client.patch This modifies the files in your working directory. It's almost identical to running a `patch -p1` command to apply the patch, although it's more paranoid and accepts fewer fuzzy matches than patch. It also handles file adds, deletes, and renames if they're described in the `git diff` format, which `patch` won't do. -Finally, `git apply` is an ``apply all or abort all'' model where either everything is applied or nothing is, whereas `patch` can partially apply patchfiles, leaving your working directory in a weird state. +Finally, `git apply` is an "`apply all or abort all`" model where either everything is applied or nothing is, whereas `patch` can partially apply patchfiles, leaving your working directory in a weird state. `git apply` is overall much more conservative than `patch`. -It won't create a commit for you – after running it, you must stage and commit the changes introduced manually. +It won't create a commit for you -- after running it, you must stage and commit the changes introduced manually. -You can also use `git apply` to see if a patch applies cleanly before you try actually applying it – you can run `git apply --check` with the patch: +You can also use `git apply` to see if a patch applies cleanly before you try actually applying it -- you can run `git apply --check` with the patch: [source,console] ---- -$ git apply --check 0001-seeing-if-this-helps-the-gem.patch +$ git apply --check 0001-see-if-this-helps-the-gem.patch error: patch failed: ticgit.gemspec:1 error: ticgit.gemspec: patch does not apply ---- @@ -82,7 +82,7 @@ It looks something like this: From 330090432754092d704da8e76ca5c05c198e71a8 Mon Sep 17 00:00:00 2001 From: Jessica Smith Date: Sun, 6 Apr 2008 10:17:23 -0700 -Subject: [PATCH 1/2] add limit to log function +Subject: [PATCH 1/2] Add limit to log function Limit log functionality to the first 20 ---- @@ -96,7 +96,7 @@ However, if someone uploaded a patch file generated via `git format-patch` to a [source,console] ---- $ git am 0001-limit-log-function.patch -Applying: add limit to log function +Applying: Add limit to log function ---- You can see that it applied cleanly and automatically created the new commit for you. @@ -112,7 +112,7 @@ AuthorDate: Sun Apr 6 10:17:23 2008 -0700 Commit: Scott Chacon CommitDate: Thu Apr 9 09:19:06 2009 -0700 - add limit to log function + Add limit to log function Limit log functionality to the first 20 ---- @@ -126,8 +126,8 @@ In that case, the `git am` process will fail and ask you what you want to do: [source,console] ---- -$ git am 0001-seeing-if-this-helps-the-gem.patch -Applying: seeing if this helps the gem +$ git am 0001-see-if-this-helps-the-gem.patch +Applying: See if this helps the gem error: patch failed: ticgit.gemspec:1 error: ticgit.gemspec: patch does not apply Patch failed at 0001. @@ -137,24 +137,24 @@ To restore the original branch and stop patching run "git am --abort". ---- This command puts conflict markers in any files it has issues with, much like a conflicted merge or rebase operation. -You solve this issue much the same way – edit the file to resolve the conflict, stage the new file, and then run `git am --resolved` to continue to the next patch: +You solve this issue much the same way -- edit the file to resolve the conflict, stage the new file, and then run `git am --resolved` to continue to the next patch: [source,console] ---- $ (fix the file) $ git add ticgit.gemspec $ git am --resolved -Applying: seeing if this helps the gem +Applying: See if this helps the gem ---- If you want Git to try a bit more intelligently to resolve the conflict, you can pass a `-3` option to it, which makes Git attempt a three-way merge. This option isn't on by default because it doesn't work if the commit the patch says it was based on isn't in your repository. -If you do have that commit – if the patch was based on a public commit – then the `-3` option is generally much smarter about applying a conflicting patch: +If you do have that commit -- if the patch was based on a public commit -- then the `-3` option is generally much smarter about applying a conflicting patch: [source,console] ---- -$ git am -3 0001-seeing-if-this-helps-the-gem.patch -Applying: seeing if this helps the gem +$ git am -3 0001-see-if-this-helps-the-gem.patch +Applying: See if this helps the gem error: patch failed: ticgit.gemspec:1 error: ticgit.gemspec: patch does not apply Using index info to reconstruct a base tree... @@ -172,7 +172,7 @@ If you're applying a number of patches from an mbox, you can also run the `am` c $ git am -3 -i mbox Commit Body is: -------------------------- -seeing if this helps the gem +See if this helps the gem -------------------------- Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all ---- @@ -191,7 +191,7 @@ For instance, if Jessica sends you an email saying that she has a great new feat [source,console] ---- -$ git remote add jessica git://github.com/jessica/myproject.git +$ git remote add jessica https://github.com/jessica/myproject.git $ git fetch jessica $ git checkout -b rubyclient jessica/ruby-client ---- @@ -201,7 +201,7 @@ If she emails you again later with another branch containing another great featu This is most useful if you're working with a person consistently. If someone only has a single patch to contribute once in a while, then accepting it over email may be less time consuming than requiring everyone to run their own server and having to continually add and remove remotes to get a few patches. You're also unlikely to want to have hundreds of remotes, each for someone who contributes only a patch or two. -However, scripts and hosted services may make this easier – it depends largely on how you develop and how your contributors develop. +However, scripts and hosted services may make this easier -- it depends largely on how you develop and how your contributors develop. The other advantage of this approach is that you get the history of the commits as well. Although you may have legitimate merge issues, you know where in your history their work is based; a proper three-way merge is the default rather than having to supply a `-3` and hope the patch was generated off a public commit to which you have access. @@ -225,8 +225,8 @@ Now you have a topic branch that contains contributed work. At this point, you can determine what you'd like to do with it. This section revisits a couple of commands so you can see how you can use them to review exactly what you'll be introducing if you merge this into your main branch. -It's often helpful to get a review of all the commits that are in this branch but that aren't in your master branch. -You can exclude commits in the master branch by adding the `--not` option before the branch name. +It's often helpful to get a review of all the commits that are in this branch but that aren't in your `master` branch. +You can exclude commits in the `master` branch by adding the `--not` option before the branch name. This does the same thing as the `master..contrib` format that we used earlier. For example, if your contributor sends you two patches and you create a branch called `contrib` and applied those patches there, you can run this: @@ -237,13 +237,13 @@ commit 5b6235bd297351589efc4d73316f0a68d484f118 Author: Scott Chacon Date: Fri Oct 24 09:53:59 2008 -0700 - seeing if this helps the gem + See if this helps the gem commit 7482e0d16d04bea79d0dba8988cc78df655f16a0 Author: Scott Chacon Date: Mon Oct 22 19:38:36 2008 -0700 - updated the gemspec to hopefully work better + Update gemspec to hopefully work better ---- To see what changes each commit introduces, remember that you can pass the `-p` option to `git log` and it will append the diff introduced to each commit. @@ -263,8 +263,8 @@ For example, if you've added a line in a file on the `master` branch, a direct c If `master` is a direct ancestor of your topic branch, this isn't a problem; but if the two histories have diverged, the diff will look like you're adding all the new stuff in your topic branch and removing everything unique to the `master` branch. -What you really want to see are the changes added to the topic branch -- the work you'll introduce if you merge this branch with master. -You do that by having Git compare the last commit on your topic branch with the first common ancestor it has with the master branch. +What you really want to see are the changes added to the topic branch -- the work you'll introduce if you merge this branch with `master`. +You do that by having Git compare the last commit on your topic branch with the first common ancestor it has with the `master` branch. Technically, you can do that by explicitly figuring out the common ancestor and then running your diff on it: @@ -290,7 +290,7 @@ In the context of the `git diff` command, you can put three periods after anothe $ git diff master...contrib ---- -This command shows you only the work your current topic branch has introduced since its common ancestor with master. +This command shows you only the work your current topic branch has introduced since its common ancestor with `master`. That is a very useful syntax to remember. ==== Integrating Contributed Work @@ -310,12 +310,12 @@ When you have work in a topic branch that you think you've completed, or work th For instance, if we have a repository with work in two branches named `ruby_client` and `php_client` that looks like <>, and we merge `ruby_client` followed by `php_client`, your history will end up looking like <>. [[merwf_a]] -.History with several topic branches. -image::images/merging-workflows-1.png[History with several topic branches.] +.History with several topic branches +image::images/merging-workflows-1.png[History with several topic branches] [[merwf_b]] -.After a topic branch merge. -image::images/merging-workflows-2.png[After a topic branch merge.] +.After a topic branch merge +image::images/merging-workflows-2.png[After a topic branch merge] That is probably the simplest workflow, but it can possibly be problematic if you're dealing with larger or more stable projects where you want to be really careful about what you introduce. @@ -325,16 +325,16 @@ You regularly push both of these branches to the public repository. Each time you have a new topic branch to merge in (<>), you merge it into `develop` (<>); then, when you tag a release, you fast-forward `master` to wherever the now-stable `develop` branch is (<>). [[merwf_c]] -.Before a topic branch merge. -image::images/merging-workflows-3.png[Before a topic branch merge.] +.Before a topic branch merge +image::images/merging-workflows-3.png[Before a topic branch merge] [[merwf_d]] -.After a topic branch merge. -image::images/merging-workflows-4.png[After a topic branch merge.] +.After a topic branch merge +image::images/merging-workflows-4.png[After a topic branch merge] [[merwf_e]] -.After a project release. -image::images/merging-workflows-5.png[After a topic branch release.] +.After a project release +image::images/merging-workflows-5.png[After a project release] This way, when people clone your project's repository, they can either check out `master` to build the latest stable version and keep up to date on that easily, or they can check out `develop`, which is the more cutting-edge content. You can also extend this concept by having an `integrate` branch where all the work is merged together. @@ -343,34 +343,35 @@ Then, when the codebase on that branch is stable and passes tests, you merge it ===== Large-Merging Workflows (((workflows, "merging (large)"))) -The Git project has four long-running branches: `master`, `next`, and `pu` (proposed updates) for new work, and `maint` for maintenance backports. +The Git project has four long-running branches: `master`, `next`, and `seen` (formerly 'pu' -- proposed updates) for new work, and `maint` for maintenance backports. When new work is introduced by contributors, it's collected into topic branches in the maintainer's repository in a manner similar to what we've described (see <>). At this point, the topics are evaluated to determine whether they're safe and ready for consumption or whether they need more work. If they're safe, they're merged into `next`, and that branch is pushed up so everyone can try the topics integrated together. [[merwf_f]] -.Managing a complex series of parallel contributed topic branches. -image::images/large-merges-1.png[Managing a complex series of parallel contributed topic branches.] +.Managing a complex series of parallel contributed topic branches +image::images/large-merges-1.png[Managing a complex series of parallel contributed topic branches] -If the topics still need work, they're merged into `pu` instead. +If the topics still need work, they're merged into `seen` instead. When it's determined that they're totally stable, the topics are re-merged into `master`. -The `next` and `pu` branches are then rebuilt from the `master`. -This means `master` almost always moves forward, `next` is rebased occasionally, and `pu` is rebased even more often: +The `next` and `seen` branches are then rebuilt from the `master`. +This means `master` almost always moves forward, `next` is rebased occasionally, and `seen` is rebased even more often: -.Merging contributed topic branches into long-term integration branches. -image::images/large-merges-2.png[Merging contributed topic branches into long-term integration branches.] +.Merging contributed topic branches into long-term integration branches +image::images/large-merges-2.png[Merging contributed topic branches into long-term integration branches] When a topic branch has finally been merged into `master`, it's removed from the repository. The Git project also has a `maint` branch that is forked off from the last release to provide backported patches in case a maintenance release is required. Thus, when you clone the Git repository, you have four branches that you can check out to evaluate the project in different stages of development, depending on how cutting edge you want to be or how you want to contribute; and the maintainer has a structured workflow to help them vet new contributions. -The Git project's workflow is specialized. To clearly understand this you could check out the https://github.com/git/git/blob/master/Documentation/howto/maintain-git.txt[Git Maintainer's guide]. +The Git project's workflow is specialized. +To clearly understand this you could check out the https://github.com/git/git/blob/master/Documentation/howto/maintain-git.txt[Git Maintainer's guide^]. [[_rebase_cherry_pick]] ===== Rebasing and Cherry-Picking Workflows (((workflows, rebasing and cherry-picking))) -Other maintainers prefer to rebase or cherry-pick contributed work on top of their master branch, rather than merging it in, to keep a mostly linear history. -When you have work in a topic branch and have determined that you want to integrate it, you move to that branch and run the rebase command to rebuild the changes on top of your current master (or `develop`, and so on) branch. +Other maintainers prefer to rebase or cherry-pick contributed work on top of their `master` branch, rather than merging it in, to keep a mostly linear history. +When you have work in a topic branch and have determined that you want to integrate it, you move to that branch and run the rebase command to rebuild the changes on top of your current `master` (or `develop`, and so on) branch. If that works well, you can fast-forward your `master` branch, and you'll end up with a linear project history. (((git commands, cherry-pick))) @@ -380,10 +381,10 @@ It takes the patch that was introduced in a commit and tries to reapply it on th This is useful if you have a number of commits on a topic branch and you want to integrate only one of them, or if you only have one commit on a topic branch and you'd prefer to cherry-pick it rather than run rebase. For example, suppose you have a project that looks like this: -.Example history before a cherry-pick. -image::images/rebasing-1.png[Example history before a cherry-pick.] +.Example history before a cherry-pick +image::images/rebasing-1.png[Example history before a cherry-pick] -If you want to pull commit `e43a6` into your master branch, you can run +If you want to pull commit `e43a6` into your `master` branch, you can run: [source,console] ---- @@ -396,17 +397,17 @@ Finished one cherry-pick. This pulls the same change introduced in `e43a6`, but you get a new commit SHA-1 value, because the date applied is different. Now your history looks like this: -.History after cherry-picking a commit on a topic branch. -image::images/rebasing-2.png[History after cherry-picking a commit on a topic branch.] +.History after cherry-picking a commit on a topic branch +image::images/rebasing-2.png[History after cherry-picking a commit on a topic branch] Now you can remove your topic branch and drop the commits you didn't want to pull in. ===== Rerere (((git commands, rerere)))(((rerere))) -If you're doing lots of merging and rebasing, or you're maintaining a long-lived topic branch, Git has a feature called ``rerere'' that can help. +If you're doing lots of merging and rebasing, or you're maintaining a long-lived topic branch, Git has a feature called "`rerere`" that can help. -Rerere stands for ``reuse recorded resolution'' – it's a way of shortcutting manual conflict resolution. +Rerere stands for "`reuse recorded resolution`" -- it's a way of shortcutting manual conflict resolution. When rerere is enabled, Git will keep a set of pre- and post-images from successful merges, and if it notices that there's a conflict that looks exactly like one you've already fixed, it'll just use the fix from last time, without bothering you with it. This feature comes in two parts: a configuration setting and a command. @@ -485,7 +486,7 @@ Also, if you include instructions in the tag message, running `git show ` w (((build numbers)))(((git commands, describe))) Because Git doesn't have monotonically increasing numbers like 'v123' or the equivalent to go with each commit, if you want to have a human-readable name to go with a commit, you can run `git describe` on that commit. -Git gives you the name of the nearest tag with the number of commits on top of that tag and a partial SHA-1 value of the commit you're describing: +In response, Git generates a string consisting of the name of the most recent tag earlier than that commit, followed by the number of commits since that tag, followed finally by a partial SHA-1 value of the commit being described (prefixed with the letter "g" meaning Git): [source,console] ---- @@ -495,10 +496,10 @@ v1.6.2-rc1-20-g8c5b85c This way, you can export a snapshot or build and name it something understandable to people. In fact, if you build Git from source code cloned from the Git repository, `git --version` gives you something that looks like this. -If you're describing a commit that you have directly tagged, it gives you the tag name. +If you're describing a commit that you have directly tagged, it gives you simply the tag name. -The `git describe` command favors annotated tags (tags created with the `-a` or `-s` flag), so release tags should be created this way if you're using `git describe`, to ensure the commit is named properly when described. -You can also use this string as the target of a checkout or show command, although it relies on the abbreviated SHA-1 value at the end, so it may not be valid forever. +By default, the `git describe` command requires annotated tags (tags created with the `-a` or `-s` flag); if you want to take advantage of lightweight (non-annotated) tags as well, add the `--tags` option to the command. +You can also use this string as the target of a `git checkout` or `git show` command, although it relies on the abbreviated SHA-1 value at the end, so it may not be valid forever. For instance, the Linux kernel recently jumped from 8 to 10 characters to ensure SHA-1 object uniqueness, so older `git describe` output names were invalidated. [[_preparing_release]] @@ -516,7 +517,7 @@ $ ls *.tar.gz v1.6.2-rc1-20-g8c5b85c.tar.gz ---- -If someone opens that tarball, they get the latest snapshot of your project under a project directory. +If someone opens that tarball, they get the latest snapshot of your project under a `project` directory. You can also create a zip archive in much the same way, but by passing the `--format=zip` option to `git archive`: [source,console] @@ -532,12 +533,12 @@ You now have a nice tarball and a zip archive of your project release that you c (((git commands, shortlog))) It's time to email your mailing list of people who want to know what's happening in your project. A nice way of quickly getting a sort of changelog of what has been added to your project since your last release or email is to use the `git shortlog` command. -It summarizes all the commits in the range you give it; for example, the following gives you a summary of all the commits since your last release, if your last release was named v1.0.1: +It summarizes all the commits in the range you give it; for example, the following gives you a summary of all the commits since your last release, if your last release was named `v1.0.1`: [source,console] ---- $ git shortlog --no-merges master --not v1.0.1 -Chris Wanstrath (8): +Chris Wanstrath (6): Add support for annotated tags to Grit::Tag Add packed-refs annotated tag support. Add Grit::Commit#to_patch @@ -552,4 +553,4 @@ Tom Preston-Werner (4): Regenerated gemspec for version 1.0.2 ---- -You get a clean summary of all the commits since v1.0.1, grouped by author, that you can email to your list. +You get a clean summary of all the commits since `v1.0.1`, grouped by author, that you can email to your list. diff --git a/book/06-github/callouts/1.pdf b/book/06-github/callouts/1.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/10.pdf b/book/06-github/callouts/10.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/2.pdf b/book/06-github/callouts/2.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/3.pdf b/book/06-github/callouts/3.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/4.pdf b/book/06-github/callouts/4.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/5.pdf b/book/06-github/callouts/5.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/6.pdf b/book/06-github/callouts/6.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/7.pdf b/book/06-github/callouts/7.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/8.pdf b/book/06-github/callouts/8.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/callouts/9.pdf b/book/06-github/callouts/9.pdf old mode 100755 new mode 100644 diff --git a/book/06-github/sections/1-setting-up-account.asc b/book/06-github/sections/1-setting-up-account.asc index bf3782db5..2ab023ec0 100644 --- a/book/06-github/sections/1-setting-up-account.asc +++ b/book/06-github/sections/1-setting-up-account.asc @@ -2,19 +2,21 @@ (((GitHub, user accounts))) The first thing you need to do is set up a free user account. -Simply visit https://github.com[], choose a user name that isn't already taken, provide an email address and a password, and click the big green ``Sign up for GitHub'' button. +Simply visit https://github.com[^], choose a user name that isn't already taken, provide an email address and a password, and click the big green "`Sign up for GitHub`" button. -.The GitHub sign-up form. -image::images/signup.png[The GitHub sign-up form.] +.The GitHub sign-up form +image::images/signup.png[The GitHub sign-up form] The next thing you'll see is the pricing page for upgraded plans, but it's safe to ignore this for now. GitHub will send you an email to verify the address you provided. -Go ahead and do this, it's pretty important (as we'll see later). +Go ahead and do this; it's pretty important (as we'll see later). [NOTE] ==== -GitHub provides all of its functionality with free accounts, with the limitation that all of your projects are fully public (everyone has read access). -GitHub's paid plans also include the option of creating private projects, but we won't be covering those in this book. +GitHub provides almost all of its functionality with free accounts, except some advanced features. + +GitHub's paid plans include advanced tools and features as well as increased limits for free services, but we won't be covering those in this book. +To get more information about available plans and their comparison, visit https://github.com/pricing[^]. ==== Clicking the Octocat logo at the top-left of the screen will take you to your dashboard page. @@ -27,18 +29,18 @@ As of right now, you're fully able to connect with Git repositories using the `h However, to simply clone public projects, you don't even need to sign up - the account we just created comes into play when we fork projects and push to our forks a bit later. If you'd like to use SSH remotes, you'll need to configure a public key. -(If you don't already have one, see <>.) +If you don't already have one, see <>. Open up your account settings using the link at the top-right of the window: -.The ``Account settings'' link. -image::images/account-settings.png[The ``Account settings'' link.] +.The "`Account settings`" link +image::images/account-settings.png[The “Account settings” link] -Then select the ``SSH keys'' section along the left-hand side. +Then select the "`SSH keys`" section along the left-hand side. -.The ``SSH keys'' link. -image::images/ssh-keys.png[The ``SSH keys'' link.] +.The "`SSH keys`" link +image::images/ssh-keys.png[The “SSH keys” link] -From there, click the "`Add an SSH key`" button, give your key a name, paste the contents of your `~/.ssh/id_rsa.pub` (or whatever you named it) public-key file into the text area, and click ``Add key''. +From there, click the "`Add an SSH key`" button, give your key a name, paste the contents of your `~/.ssh/id_rsa.pub` (or whatever you named it) public-key file into the text area, and click "`Add key`". [NOTE] ==== @@ -50,19 +52,19 @@ You can name each of your keys (e.g. "My Laptop" or "Work Account") so that if y ==== Your Avatar Next, if you wish, you can replace the avatar that is generated for you with an image of your choosing. -First go to the ``Profile'' tab (above the SSH Keys tab) and click ``Upload new picture''. +First go to the "`Profile`" tab (above the SSH Keys tab) and click "`Upload new picture`". -.The ``Profile'' link. -image::images/your-profile.png[The ``Profile'' link.] +.The "`Profile`" link +image::images/your-profile.png[The “Profile” link] We'll choose a copy of the Git logo that is on our hard drive and then we get a chance to crop it. -.Crop your avatar -image::images/avatar-crop.png[Crop your uploaded avatar.] +.Crop your uploaded avatar +image::images/avatar-crop.png[Crop your uploaded avatar] Now anywhere you interact on the site, people will see your avatar next to your username. -If you happen to have uploaded an avatar to the popular Gravatar service (often used for Wordpress accounts), that avatar will be used by default and you don't need to do this step. +If you happen to have uploaded an avatar to the popular Gravatar service (often used for WordPress accounts), that avatar will be used by default and you don't need to do this step. ==== Your Email Addresses @@ -70,8 +72,8 @@ The way that GitHub maps your Git commits to your user is by email address. If you use multiple email addresses in your commits and you want GitHub to link them up properly, you need to add all the email addresses you have used to the Emails section of the admin section. [[_add_email_addresses]] -.Add email addresses -image::images/email-settings.png[Add all your email addresses.] +.Add all your email addresses +image::images/email-settings.png[Add all your email addresses] In <<_add_email_addresses>> we can see some of the different states that are possible. The top address is verified and set as the primary address, meaning that is where you'll get any notifications and receipts. @@ -81,7 +83,7 @@ If GitHub sees any of these in commit messages in any repository on the site, it ==== Two Factor Authentication -Finally, for extra security, you should definitely set up Two-factor Authentication or ``2FA''. +Finally, for extra security, you should definitely set up Two-factor Authentication or "`2FA`". Two-factor Authentication is an authentication mechanism that is becoming more and more popular recently to mitigate the risk of your account being compromised if your password is stolen somehow. Turning it on will make GitHub ask you for two different methods of authentication, so that if one of them is compromised, an attacker will not be able to access your account. @@ -90,6 +92,6 @@ You can find the Two-factor Authentication setup under the Security tab of your .2FA in the Security Tab image::images/2fa-1.png[2FA in the Security Tab] -If you click on the ``Set up two-factor authentication'' button, it will take you to a configuration page where you can choose to use a phone app to generate your secondary code (a ``time based one-time password''), or you can have GitHub send you a code via SMS each time you need to log in. +If you click on the "`Set up two-factor authentication`" button, it will take you to a configuration page where you can choose to use a phone app to generate your secondary code (a "`time based one-time password`"), or you can have GitHub send you a code via SMS each time you need to log in. After you choose which method you prefer and follow the instructions for setting up 2FA, your account will then be a little more secure and you will have to provide a code in addition to your password whenever you log into GitHub. diff --git a/book/06-github/sections/2-contributing.asc b/book/06-github/sections/2-contributing.asc index 1f351b83d..1dffbd9a5 100644 --- a/book/06-github/sections/2-contributing.asc +++ b/book/06-github/sections/2-contributing.asc @@ -5,27 +5,26 @@ Now that our account is set up, let's walk through some details that could be us ==== Forking Projects (((forking))) -If you want to contribute to an existing project to which you don’t have push access, you can ``fork'' the project. -When you ``fork'' a project, GitHub will make a copy of the project that is entirely yours; it lives in your namespace, and you can push to it. +If you want to contribute to an existing project to which you don't have push access, you can "`fork`" the project. +When you "`fork`" a project, GitHub will make a copy of the project that is entirely yours; it lives in your namespace, and you can push to it. [NOTE] ==== -Historically, the term ``fork'' has been somewhat negative in context, meaning that someone took an open source project in a different direction, sometimes creating a competing project and splitting the contributors. -In GitHub, a ``fork'' is simply the same project in your own namespace, allowing you to make changes to a project publicly as a way to contribute in a more open manner. +Historically, the term "`fork`" has been somewhat negative in context, meaning that someone took an open source project in a different direction, sometimes creating a competing project and splitting the contributors. +In GitHub, a "`fork`" is simply the same project in your own namespace, allowing you to make changes to a project publicly as a way to contribute in a more open manner. ==== -This way, projects don’t have to worry about adding users as collaborators to give them push access. +This way, projects don't have to worry about adding users as collaborators to give them push access. People can fork a project, push to it, and contribute their changes back to the original repository by creating what's called a Pull Request, which we'll cover next. This opens up a discussion thread with code review, and the owner and the contributor can then communicate about the change until the owner is happy with it, at which point the owner can merge it in. -To fork a project, visit the project page and click the ``Fork'' button at the top-right of the page. +To fork a project, visit the project page and click the "`Fork`" button at the top-right of the page. -.The ``Fork'' button. -image::images/forkbutton.png[The ``Fork'' button.] +.The "`Fork`" button +image::images/forkbutton.png[The “Fork” button] After a few seconds, you'll be taken to your new project page, with your own writeable copy of the code. - [[ch06-github_flow]] ==== The GitHub Flow @@ -36,30 +35,39 @@ It is centered on the <> workflow covered in < Here's how it generally works: -1. Fork the project +1. Fork the project. 2. Create a topic branch from `master`. 3. Make some commits to improve the project. 4. Push this branch to your GitHub project. 5. Open a Pull Request on GitHub. 6. Discuss, and optionally continue committing. 7. The project owner merges or closes the Pull Request. +8. Sync the updated `master` back to your fork. This is basically the Integration Manager workflow covered in <>, but instead of using email to communicate and review changes, teams use GitHub's web based tools. Let's walk through an example of proposing a change to an open source project hosted on GitHub using this flow. +[TIP] +==== +You can use the official *GitHub CLI* tool instead of the GitHub web interface for most things. +The tool can be used on Windows, macOS, and Linux systems. +Go to the https://cli.github.com/[GitHub CLI homepage^] for installation instructions and the manual. +==== + ===== Creating a Pull Request -Tony is looking for code to run on his Arduino programmable microcontroller and has found a great program file on GitHub at https://github.com/schacon/blink[]. +Tony is looking for code to run on his Arduino programmable microcontroller and has found a great program file on GitHub at https://github.com/schacon/blink[^]. -.The project we want to contribute to. -image::images/blink-01-start.png[The project we want to contribute to.] +.The project we want to contribute to +image::images/blink-01-start.png[The project we want to contribute to] -The only problem is that the blinking rate is too fast, we think it's much nicer to wait 3 seconds instead of 1 in between each state change. +The only problem is that the blinking rate is too fast. +We think it's much nicer to wait 3 seconds instead of 1 in between each state change. So let's improve the program and submit it back to the project as a proposed change. First, we click the 'Fork' button as mentioned earlier to get our own copy of the project. -Our user name here is ``tonychacon'' so our copy of this project is at `https://github.com/tonychacon/blink` and that's where we can edit it. +Our user name here is "`tonychacon`" so our copy of this project is at `https://github.com/tonychacon/blink` and that's where we can edit it. We will clone it locally, create a topic branch, make the code change and finally push that change back up to GitHub. [source,console] @@ -89,8 +97,8 @@ void loop() { [-delay(1000);-]{+delay(3000);+} // wait for a second } -$ git commit -a -m 'three seconds is better' <5> -[slow-blink 5ca509d] three seconds is better +$ git commit -a -m 'Change delay to 3 seconds' <5> +[slow-blink 5ca509d] Change delay to 3 seconds 1 file changed, 2 insertions(+), 2 deletions(-) $ git push origin slow-blink <6> @@ -105,16 +113,16 @@ To https://github.com/tonychacon/blink * [new branch] slow-blink -> slow-blink ---- -<1> Clone our fork of the project locally -<2> Create a descriptive topic branch -<3> Make our change to the code -<4> Check that the change is good -<5> Commit our change to the topic branch -<6> Push our new topic branch back up to our GitHub fork +<1> Clone our fork of the project locally. +<2> Create a descriptive topic branch. +<3> Make our change to the code. +<4> Check that the change is good. +<5> Commit our change to the topic branch. +<6> Push our new topic branch back up to our GitHub fork. Now if we go back to our fork on GitHub, we can see that GitHub noticed that we pushed a new topic branch up and presents us with a big green button to check out our changes and open a Pull Request to the original project. -You can alternatively go to the ``Branches'' page at `https://github.com///branches` to locate your branch and open a new Pull Request from there. +You can alternatively go to the "`Branches`" page at `\https://github.com///branches` to locate your branch and open a new Pull Request from there. .Pull Request button image::images/blink-02-pr.png[Pull Request button] @@ -123,38 +131,44 @@ image::images/blink-02-pr.png[Pull Request button] If we click that green button, we'll see a screen that asks us to give our Pull Request a title and description. It is almost always worthwhile to put some effort into this, since a good description helps the owner of the original project determine what you were trying to do, whether your proposed changes are correct, and whether accepting the changes would improve the original project. -We also see a list of the commits in our topic branch that are ``ahead'' of the `master` branch (in this case, just the one) and a unified diff of all the changes that will be made should this branch get merged by the project owner. +We also see a list of the commits in our topic branch that are "`ahead`" of the `master` branch (in this case, just the one) and a unified diff of all the changes that will be made should this branch get merged by the project owner. .Pull Request creation page -image::images/blink-03-pull-request-open.png[Pull Request creation] +image::images/blink-03-pull-request-open.png[Pull Request creation page] When you hit the 'Create pull request' button on this screen, the owner of the project you forked will get a notification that someone is suggesting a change and will link to a page that has all of this information on it. [NOTE] ==== -Though Pull Requests are used commonly for public projects like this when the contributor has a complete change ready to be made, it's also often used in internal projects _at the beginning_ of the development cycle. Since you can keep pushing to the topic branch even *after* the Pull Request is opened, it's often opened early and used as a way to iterate on work as a team within a context, rather than opened at the very end of the process. +Though Pull Requests are used commonly for public projects like this when the contributor has a complete change ready to be made, it's also often used in internal projects _at the beginning_ of the development cycle. +Since you can keep pushing to the topic branch even *after* the Pull Request is opened, it's often opened early and used as a way to iterate on work as a team within a context, rather than opened at the very end of the process. ==== ===== Iterating on a Pull Request -At this point, the project owner can look at the suggested change and merge it, reject it or comment on it. Let's say that he likes the idea, but would prefer a slightly longer time for the light to be off than on. +At this point, the project owner can look at the suggested change and merge it, reject it or comment on it. +Let's say that he likes the idea, but would prefer a slightly longer time for the light to be off than on. -Where this conversation may take place over email in the workflows presented in <>, on GitHub this happens online. The project owner can review the unified diff and leave a comment by clicking on any of the lines. +Where this conversation may take place over email in the workflows presented in <>, on GitHub this happens online. +The project owner can review the unified diff and leave a comment by clicking on any of the lines. .Comment on a specific line of code in a Pull Request -image::images/blink-04-pr-comment.png[PR line comment] +image::images/blink-04-pr-comment.png[Comment on a specific line of code in a Pull Request] -Once the maintainer makes this comment, the person who opened the Pull Request (and indeed, anyone else watching the repository) will get a notification. We'll go over customizing this later, but if he had email notifications turned on, Tony would get an email like this: +Once the maintainer makes this comment, the person who opened the Pull Request (and indeed, anyone else watching the repository) will get a notification. +We'll go over customizing this later, but if he had email notifications turned on, Tony would get an email like this: [[_email_notification]] .Comments sent as email notifications -image::images/blink-04-email.png[Email notification] +image::images/blink-04-email.png[Comments sent as email notifications] -Anyone can also leave general comments on the Pull Request. In <<_pr_discussion>> we can see an example of the project owner both commenting on a line of code and then leaving a general comment in the discussion section. You can see that the code comments are brought into the conversation as well. +Anyone can also leave general comments on the Pull Request. +In <<_pr_discussion>> we can see an example of the project owner both commenting on a line of code and then leaving a general comment in the discussion section. +You can see that the code comments are brought into the conversation as well. [[_pr_discussion]] .Pull Request discussion page -image::images/blink-05-general-comment.png[PR discussion page] +image::images/blink-05-general-comment.png[Pull Request discussion page] Now the contributor can see what they need to do in order to get their change accepted. Luckily this is very straightforward. @@ -165,20 +179,28 @@ Adding commits to an existing Pull Request doesn't trigger a notification, so on [[_pr_final]] .Pull Request final -image::images/blink-06-final.png[PR final] +image::images/blink-06-final.png[Pull Request final] -An interesting thing to notice is that if you click on the ``Files Changed'' tab on this Pull Request, you'll get the ``unified'' diff -- that is, the total aggregate difference that would be introduced to your main branch if this topic branch was merged in. In `git diff` terms, it basically automatically shows you `git diff master...` for the branch this Pull Request is based on. See <> for more about this type of diff. +An interesting thing to notice is that if you click on the "`Files Changed`" tab on this Pull Request, you'll get the "`unified`" diff -- that is, the total aggregate difference that would be introduced to your main branch if this topic branch was merged in. +In `git diff` terms, it basically automatically shows you `git diff master...` for the branch this Pull Request is based on. +See <> for more about this type of diff. -The other thing you'll notice is that GitHub checks to see if the Pull Request merges cleanly and provides a button to do the merge for you on the server. This button only shows up if you have write access to the repository and a trivial merge is possible. If you click it GitHub will perform a ``non-fast-forward'' merge, meaning that even if the merge *could* be a fast-forward, it will still create a merge commit. +The other thing you'll notice is that GitHub checks to see if the Pull Request merges cleanly and provides a button to do the merge for you on the server. +This button only shows up if you have write access to the repository and a trivial merge is possible. +If you click it GitHub will perform a "`non-fast-forward`" merge, meaning that even if the merge *could* be a fast-forward, it will still create a merge commit. -If you would prefer, you can simply pull the branch down and merge it locally. If you merge this branch into the `master` branch and push it to GitHub, the Pull Request will automatically be closed. +If you would prefer, you can simply pull the branch down and merge it locally. +If you merge this branch into the `master` branch and push it to GitHub, the Pull Request will automatically be closed. -This is the basic workflow that most GitHub projects use. Topic branches are created, Pull Requests are opened on them, a discussion ensues, possibly more work is done on the branch and eventually the request is either closed or merged. +This is the basic workflow that most GitHub projects use. +Topic branches are created, Pull Requests are opened on them, a discussion ensues, possibly more work is done on the branch and eventually the request is either closed or merged. [NOTE] .Not Only Forks ==== -It's important to note that you can also open a Pull Request between two branches in the same repository. If you're working on a feature with someone and you both have write access to the project, you can push a topic branch to the repository and open a Pull Request on it to the `master` branch of that same project to initiate the code review and discussion process. No forking necessary. +It's important to note that you can also open a Pull Request between two branches in the same repository. +If you're working on a feature with someone and you both have write access to the project, you can push a topic branch to the repository and open a Pull Request on it to the `master` branch of that same project to initiate the code review and discussion process. +No forking necessary. ==== ==== Advanced Pull Requests @@ -187,29 +209,39 @@ Now that we've covered the basics of contributing to a project on GitHub, let's ===== Pull Requests as Patches -It's important to understand that many projects don't really think of Pull Requests as queues of perfect patches that should apply cleanly in order, as most mailing list-based projects think of patch series contributions. Most GitHub projects think about Pull Request branches as iterative conversations around a proposed change, culminating in a unified diff that is applied by merging. +It's important to understand that many projects don't really think of Pull Requests as queues of perfect patches that should apply cleanly in order, as most mailing list-based projects think of patch series contributions. +Most GitHub projects think about Pull Request branches as iterative conversations around a proposed change, culminating in a unified diff that is applied by merging. -This is an important distinction, because generally the change is suggested before the code is thought to be perfect, which is far more rare with mailing list based patch series contributions. This enables an earlier conversation with the maintainers so that arriving at the proper solution is more of a community effort. When code is proposed with a Pull Request and the maintainers or community suggest a change, the patch series is generally not re-rolled, but instead the difference is pushed as a new commit to the branch, moving the conversation forward with the context of the previous work intact. +This is an important distinction, because generally the change is suggested before the code is thought to be perfect, which is far more rare with mailing list based patch series contributions. +This enables an earlier conversation with the maintainers so that arriving at the proper solution is more of a community effort. +When code is proposed with a Pull Request and the maintainers or community suggest a change, the patch series is generally not re-rolled, but instead the difference is pushed as a new commit to the branch, moving the conversation forward with the context of the previous work intact. -For instance, if you go back and look again at <<_pr_final>>, you'll notice that the contributor did not rebase his commit and send another Pull Request. Instead they added new commits and pushed them to the existing branch. This way if you go back and look at this Pull Request in the future, you can easily find all of the context of why decisions were made. Pushing the ``Merge'' button on the site purposefully creates a merge commit that references the Pull Request so that it's easy to go back and research the original conversation if necessary. +For instance, if you go back and look again at <<_pr_final>>, you'll notice that the contributor did not rebase his commit and send another Pull Request. +Instead they added new commits and pushed them to the existing branch. +This way if you go back and look at this Pull Request in the future, you can easily find all of the context of why decisions were made. +Pushing the "`Merge`" button on the site purposefully creates a merge commit that references the Pull Request so that it's easy to go back and research the original conversation if necessary. ===== Keeping up with Upstream -If your Pull Request becomes out of date or otherwise doesn't merge cleanly, you will want to fix it so the maintainer can easily merge it. GitHub will test this for you and let you know at the bottom of every Pull Request if the merge is trivial or not. +If your Pull Request becomes out of date or otherwise doesn't merge cleanly, you will want to fix it so the maintainer can easily merge it. +GitHub will test this for you and let you know at the bottom of every Pull Request if the merge is trivial or not. [[_pr_fail]] .Pull Request does not merge cleanly -image::images/pr-01-fail.png[PR merge failure] +image::images/pr-01-fail.png[Pull Request does not merge cleanly] If you see something like <<_pr_fail>>, you'll want to fix your branch so that it turns green and the maintainer doesn't have to do extra work. -You have two main options in order to do this. You can either rebase your branch on top of whatever the target branch is (normally the `master` branch of the repository you forked), or you can merge the target branch into your branch. +You have two main options in order to do this. +You can either rebase your branch on top of whatever the target branch is (normally the `master` branch of the repository you forked), or you can merge the target branch into your branch. -Most developers on GitHub will choose to do the latter, for the same reasons we just went over in the previous section. What matters is the history and the final merge, so rebasing isn't getting you much other than a slightly cleaner history and in return is *far* more difficult and error prone. +Most developers on GitHub will choose to do the latter, for the same reasons we just went over in the previous section. +What matters is the history and the final merge, so rebasing isn't getting you much other than a slightly cleaner history and in return is *far* more difficult and error prone. If you want to merge in the target branch to make your Pull Request mergeable, you would add the original repository as a new remote, fetch from it, merge the main branch of that repository into your topic branch, fix any issues and finally push it back up to the same branch you opened the Pull Request on. -For example, let's say that in the ``tonychacon'' example we were using before, the original author made a change that would create a conflict in the Pull Request. Let's go through those steps. +For example, let's say that in the "`tonychacon`" example we were using before, the original author made a change that would create a conflict in the Pull Request. +Let's go through those steps. [source,console] ---- @@ -244,65 +276,85 @@ To https://github.com/tonychacon/blink ef4725c..3c8d735 slower-blink -> slow-blink ---- -<1> Add the original repository as a remote named ``upstream'' -<2> Fetch the newest work from that remote -<3> Merge the main branch of that repository into your topic branch -<4> Fix the conflict that occurred -<5> Push back up to the same topic branch +<1> Add the original repository as a remote named `upstream`. +<2> Fetch the newest work from that remote. +<3> Merge the main branch of that repository into your topic branch. +<4> Fix the conflict that occurred. +<5> Push back up to the same topic branch. Once you do that, the Pull Request will be automatically updated and re-checked to see if it merges cleanly. [[_pr_merge_fix]] .Pull Request now merges cleanly -image::images/pr-02-merge-fix.png[PR fixed] +image::images/pr-02-merge-fix.png[Pull Request now merges cleanly] -One of the great things about Git is that you can do that continuously. If you have a very long-running project, you can easily merge from the target branch over and over again and only have to deal with conflicts that have arisen since the last time that you merged, making the process very manageable. +One of the great things about Git is that you can do that continuously. +If you have a very long-running project, you can easily merge from the target branch over and over again and only have to deal with conflicts that have arisen since the last time that you merged, making the process very manageable. -If you absolutely wish to rebase the branch to clean it up, you can certainly do so, but it is highly encouraged to not force push over the branch that the Pull Request is already opened on. If other people have pulled it down and done more work on it, you run into all of the issues outlined in <>. Instead, push the rebased branch to a new branch on GitHub and open a brand new Pull Request referencing the old one, then close the original. +If you absolutely wish to rebase the branch to clean it up, you can certainly do so, but it is highly encouraged to not force push over the branch that the Pull Request is already opened on. +If other people have pulled it down and done more work on it, you run into all of the issues outlined in <>. +Instead, push the rebased branch to a new branch on GitHub and open a brand new Pull Request referencing the old one, then close the original. ===== References -Your next question may be ``How do I reference the old Pull Request?''. It turns out there are many, many ways to reference other things almost anywhere you can write in GitHub. +Your next question may be "`How do I reference the old Pull Request?`". +It turns out there are many, many ways to reference other things almost anywhere you can write in GitHub. -Let's start with how to cross-reference another Pull Request or an Issue. All Pull Requests and Issues are assigned numbers and they are unique within the project. For example, you can't have Pull Request #3 _and_ Issue #3. If you want to reference any Pull Request or Issue from any other one, you can simply put `#` in any comment or description. You can also be more specific if the Issue or Pull request lives somewhere else; write `username#` if you're referring to an Issue or Pull Request in a fork of the repository you're in, or `username/repo#` to reference something in another repository. +Let's start with how to cross-reference another Pull Request or an Issue. +All Pull Requests and Issues are assigned numbers and they are unique within the project. +For example, you can't have Pull Request +#3+ _and_ Issue +#3+. +If you want to reference any Pull Request or Issue from any other one, you can simply put `+#+` in any comment or description. +You can also be more specific if the Issue or Pull request lives somewhere else; write `username#` if you're referring to an Issue or Pull Request in a fork of the repository you're in, or `username/repo#` to reference something in another repository. -Let's look at an example. Say we rebased the branch in the previous example, created a new pull request for it, and now we want to reference the old pull request from the new one. We also want to reference an issue in the fork of the repository and an issue in a completely different project. We can fill out the description just like <<_pr_references>>. +Let's look at an example. +Say we rebased the branch in the previous example, created a new pull request for it, and now we want to reference the old pull request from the new one. +We also want to reference an issue in the fork of the repository and an issue in a completely different project. +We can fill out the description just like <<_pr_references>>. [[_pr_references]] -.Cross references in a Pull Request. -image::images/mentions-01-syntax.png[PR references] +.Cross references in a Pull Request +image::images/mentions-01-syntax.png[Cross references in a Pull Request] When we submit this pull request, we'll see all of that rendered like <<_pr_references_render>>. [[_pr_references_render]] -.Cross references rendered in a Pull Request. -image::images/mentions-02-render.png[PR references rendered] +.Cross references rendered in a Pull Request +image::images/mentions-02-render.png[Cross references rendered in a Pull Request] Notice that the full GitHub URL we put in there was shortened to just the information needed. -Now if Tony goes back and closes out the original Pull Request, we can see that by mentioning it in the new one, GitHub has automatically created a trackback event in the Pull Request timeline. This means that anyone who visits this Pull Request and sees that it is closed can easily link back to the one that superseded it. The link will look something like <<_pr_closed>>. +Now if Tony goes back and closes out the original Pull Request, we can see that by mentioning it in the new one, GitHub has automatically created a trackback event in the Pull Request timeline. +This means that anyone who visits this Pull Request and sees that it is closed can easily link back to the one that superseded it. +The link will look something like <<_pr_closed>>. [[_pr_closed]] -.Link back to the new Pull Request in the closed Pull Request timeline. -image::images/mentions-03-closed.png[PR closed] +.Link back to the new Pull Request in the closed Pull Request timeline +image::images/mentions-03-closed.png[Link back to the new Pull Request in the closed Pull Request timeline] -In addition to issue numbers, you can also reference a specific commit by SHA-1. You have to specify a full 40 character SHA-1, but if GitHub sees that in a comment, it will link directly to the commit. Again, you can reference commits in forks or other repositories in the same way you did with issues. +In addition to issue numbers, you can also reference a specific commit by SHA-1. +You have to specify a full 40 character SHA-1, but if GitHub sees that in a comment, it will link directly to the commit. +Again, you can reference commits in forks or other repositories in the same way you did with issues. ==== GitHub Flavored Markdown -Linking to other Issues is just the beginning of interesting things you can do with almost any text box on GitHub. In Issue and Pull Request descriptions, comments, code comments and more, you can use what is called ``GitHub Flavored Markdown''. Markdown is like writing in plain text but which is rendered richly. +Linking to other Issues is just the beginning of interesting things you can do with almost any text box on GitHub. +In Issue and Pull Request descriptions, comments, code comments and more, you can use what is called "`GitHub Flavored Markdown`". +Markdown is like writing in plain text but which is rendered richly. See <<_example_markdown>> for an example of how comments or text can be written and then rendered using Markdown. [[_example_markdown]] -.An example of GitHub Flavored Markdown as written and as rendered. -image::images/markdown-01-example.png[Example Markdown] +.An example of GitHub Flavored Markdown as written and as rendered +image::images/markdown-01-example.png[An example of GitHub Flavored Markdown as written and as rendered] -The GitHub flavor of Markdown adds more things you can do beyond the basic Markdown syntax. These can all be really useful when creating useful Pull Request or Issue comments or descriptions. +The GitHub flavor of Markdown adds more things you can do beyond the basic Markdown syntax. +These can all be really useful when creating useful Pull Request or Issue comments or descriptions. ===== Task Lists -The first really useful GitHub specific Markdown feature, especially for use in Pull Requests, is the Task List. A task list is a list of checkboxes of things you want to get done. Putting them into an Issue or Pull Request normally indicates things that you want to get done before you consider the item complete. +The first really useful GitHub specific Markdown feature, especially for use in Pull Requests, is the Task List. +A task list is a list of checkboxes of things you want to get done. +Putting them into an Issue or Pull Request normally indicates things that you want to get done before you consider the item complete. You can create a task list like this: @@ -313,27 +365,33 @@ You can create a task list like this: - [ ] Document the code ---- -If we include this in the description of our Pull Request or Issue, we'll see it rendered like <<_eg_task_lists>> +If we include this in the description of our Pull Request or Issue, we'll see it rendered like <<_eg_task_lists>>. [[_eg_task_lists]] -.Task lists rendered in a Markdown comment. -image::images/markdown-02-tasks.png[Example Task List] +.Task lists rendered in a Markdown comment +image::images/markdown-02-tasks.png[Task lists rendered in a Markdown comment] -This is often used in Pull Requests to indicate what all you would like to get done on the branch before the Pull Request will be ready to merge. The really cool part is that you can simply click the checkboxes to update the comment -- you don't have to edit the Markdown directly to check tasks off. +This is often used in Pull Requests to indicate what all you would like to get done on the branch before the Pull Request will be ready to merge. +The really cool part is that you can simply click the checkboxes to update the comment -- you don't have to edit the Markdown directly to check tasks off. -What's more, GitHub will look for task lists in your Issues and Pull Requests and show them as metadata on the pages that list them out. For example, if you have a Pull Request with tasks and you look at the overview page of all Pull Requests, you can see how far done it is. This helps people break down Pull Requests into subtasks and helps other people track the progress of the branch. You can see an example of this in <<_task_list_progress>>. +What's more, GitHub will look for task lists in your Issues and Pull Requests and show them as metadata on the pages that list them out. +For example, if you have a Pull Request with tasks and you look at the overview page of all Pull Requests, you can see how far done it is. +This helps people break down Pull Requests into subtasks and helps other people track the progress of the branch. +You can see an example of this in <<_task_list_progress>>. [[_task_list_progress]] -.Task list summary in the Pull Request list. -image::images/markdown-03-task-summary.png[Example Task List] +.Task list summary in the Pull Request list +image::images/markdown-03-task-summary.png[Task list summary in the Pull Request list] These are incredibly useful when you open a Pull Request early and use it to track your progress through the implementation of the feature. ===== Code Snippets -You can also add code snippets to comments. This is especially useful if you want to present something that you _could_ try to do before actually implementing it as a commit on your branch. This is also often used to add example code of what is not working or what this Pull Request could implement. +You can also add code snippets to comments. +This is especially useful if you want to present something that you _could_ try to do before actually implementing it as a commit on your branch. +This is also often used to add example code of what is not working or what this Pull Request could implement. -To add a snippet of code you have to ``fence'' it in backticks. +To add a snippet of code you have to "`fence`" it in backticks. [source,text] ---- @@ -345,15 +403,18 @@ for(int i=0 ; i < 5 ; i++) ``` ---- -If you add a language name like we did there with 'java', GitHub will also try to syntax highlight the snippet. In the case of the above example, it would end up rendering like <<_md_code>>. +If you add a language name like we did there with 'java', GitHub will also try to syntax highlight the snippet. +In the case of the above example, it would end up rendering like <<_md_code>>. [[_md_code]] -.Rendered fenced code example. -image::images/markdown-04-fenced-code.png[Rendered fenced code] +.Rendered fenced code example +image::images/markdown-04-fenced-code.png[Rendered fenced code example] ===== Quoting -If you're responding to a small part of a long comment, you can selectively quote out of the other comment by preceding the lines with the `>` character. In fact, this is so common and so useful that there is a keyboard shortcut for it. If you highlight text in a comment that you want to directly reply to and hit the `r` key, it will quote that text in the comment box for you. +If you're responding to a small part of a long comment, you can selectively quote out of the other comment by preceding the lines with the `>` character. +In fact, this is so common and so useful that there is a keyboard shortcut for it. +If you highlight text in a comment that you want to directly reply to and hit the `r` key, it will quote that text in the comment box for you. The quotes look something like this: @@ -368,18 +429,22 @@ How big are these slings and in particular, these arrows? Once rendered, the comment will look like <<_md_quote>>. [[_md_quote]] -.Rendered quoting example. -image::images/markdown-05-quote.png[Rendered quoting] +.Rendered quoting example +image::images/markdown-05-quote.png[Rendered quoting example] ===== Emoji -Finally, you can also use emoji in your comments. This is actually used quite extensively in comments you see on many GitHub Issues and Pull Requests. There is even an emoji helper in GitHub. If you are typing a comment and you start with a `:` character, an autocompleter will help you find what you're looking for. +Finally, you can also use emoji in your comments. +This is actually used quite extensively in comments you see on many GitHub Issues and Pull Requests. +There is even an emoji helper in GitHub. +If you are typing a comment and you start with a `:` character, an autocompleter will help you find what you're looking for. [[_md_emoji_auto]] -.Emoji autocompleter in action. -image::images/markdown-06-emoji-complete.png[Emoji autocompleter] +.Emoji autocompleter in action +image::images/markdown-06-emoji-complete.png[Emoji autocompleter in action] -Emojis take the form of `::` anywhere in the comment. For instance, you could write something like this: +Emojis take the form of `::` anywhere in the comment. +For instance, you could write something like this: [source,text] ---- @@ -395,25 +460,89 @@ I :eyes: that :bug: and I :cold_sweat:. When rendered, it would look something like <<_md_emoji>>. [[_md_emoji]] -.Heavy emoji commenting. -image::images/markdown-07-emoji.png[Emoji] +.Heavy emoji commenting +image::images/markdown-07-emoji.png[Heavy emoji commenting] Not that this is incredibly useful, but it does add an element of fun and emotion to a medium that is otherwise hard to convey emotion in. - [NOTE] ==== -There are actually quite a number of web services that make use of emoji characters these days. A great cheat sheet to reference to find emoji that expresses what you want to say can be found at: +There are actually quite a number of web services that make use of emoji characters these days. +A great cheat sheet to reference to find emoji that expresses what you want to say can be found at: -http://www.emoji-cheat-sheet.com +https://www.webfx.com/tools/emoji-cheat-sheet/[^] ==== ===== Images -This isn't technically GitHub Flavored Markdown, but it is incredibly useful. In addition to adding Markdown image links to comments, which can be difficult to find and embed URLs for, GitHub allows you to drag and drop images into text areas to embed them. +This isn't technically GitHub Flavored Markdown, but it is incredibly useful. +In addition to adding Markdown image links to comments, which can be difficult to find and embed URLs for, GitHub allows you to drag and drop images into text areas to embed them. [[_md_drag]] -.Drag and drop images to upload them and auto-embed them. -image::images/markdown-08-drag-drop.png[Drag and drop images] +.Drag and drop images to upload them and auto-embed them +image::images/markdown-08-drag-drop.png[Drag and drop images to upload them and auto-embed them] + +If you look at <<_md_drag>>, you can see a small "`Parsed as Markdown`" hint above the text area. +Clicking on that will give you a full cheat sheet of everything you can do with Markdown on GitHub. + +[[_fetch_and_push_on_different_repositories]] +==== Keep your GitHub public repository up-to-date + +Once you've forked a GitHub repository, your repository (your "fork") exists independently from the original. +In particular, when the original repository has new commits, GitHub informs you by a message like: + +[source,text] +---- +This branch is 5 commits behind progit:master. +---- + +But your GitHub repository will never be automatically updated by GitHub; this is something that you must do yourself. +Fortunately, this is very easy to do. + +One possibility to do this requires no configuration. +For example, if you forked from `https://github.com/progit/progit2.git`, you can keep your `master` branch up-to-date like this: + +[source,console] +---- +$ git checkout master <1> +$ git pull https://github.com/progit/progit2.git <2> +$ git push origin master <3> +---- + +<1> If you were on another branch, return to `master`. +<2> Fetch changes from `https://github.com/progit/progit2.git` and merge them into `master`. +<3> Push your `master` branch to `origin`. + +This works, but it is a little tedious having to spell out the fetch URL every time. +You can automate this work with a bit of configuration: + +[source,console] +---- +$ git remote add progit https://github.com/progit/progit2.git <1> +$ git fetch progit <2> +$ git branch --set-upstream-to=progit/master master <3> +$ git config --local remote.pushDefault origin <4> +---- + +<1> Add the source repository and give it a name. + Here, I have chosen to call it `progit`. +<2> Get a reference on progit's branches, in particular `master`. +<3> Set your `master` branch to fetch from the `progit` remote. +<4> Define the default push repository to `origin`. + +Once this is done, the workflow becomes much simpler: + +[source,console] +---- +$ git checkout master <1> +$ git pull <2> +$ git push <3> +---- + +<1> If you were on another branch, return to `master`. +<2> Fetch changes from `progit` and merge changes into `master`. +<3> Push your `master` branch to `origin`. -If you look at <<_md_drag>>, you can see a small ``Parsed as Markdown'' hint above the text area. Clicking on that will give you a full cheat sheet of everything you can do with Markdown on GitHub. +This approach can be useful, but it's not without downsides. +Git will happily do this work for you silently, but it won't warn you if you make a commit to `master`, pull from `progit`, then push to `origin` -- all of those operations are valid with this setup. +So you'll have to take care never to commit directly to `master`, since that branch effectively belongs to the upstream repository. diff --git a/book/06-github/sections/3-maintaining.asc b/book/06-github/sections/3-maintaining.asc index 5e254f801..2505e86a6 100644 --- a/book/06-github/sections/3-maintaining.asc +++ b/book/06-github/sections/3-maintaining.asc @@ -6,28 +6,28 @@ Now that we're comfortable contributing to a project, let's look at the other si ==== Creating a New Repository Let's create a new repository to share our project code with. -Start by clicking the ``New repository'' button on the right-hand side of the dashboard, or from the `+` button in the top toolbar next to your username as seen in <<_new_repo_dropdown>>. +Start by clicking the "`New repository`" button on the right-hand side of the dashboard, or from the `+` button in the top toolbar next to your username as seen in <<_new_repo_dropdown>>. -.The ``Your repositories'' area. -image::images/newrepo.png[The ``Your repositories'' area.] +.The "`Your repositories`" area +image::images/newrepo.png[The “Your repositories” area] [[_new_repo_dropdown]] -.The ``New repository'' dropdown. -image::images/new-repo.png[The ``new repository'' dropdown.] +.The "`New repository`" dropdown +image::images/new-repo.png[The “New repository” dropdown] -This takes you to the ``new repository'' form: +This takes you to the "`new repository`" form: -.The ``new repository'' form. -image::images/newrepoform.png[The ``new repository'' form.] +.The "`new repository`" form +image::images/newrepoform.png[The “new repository” form] All you really have to do here is provide a project name; the rest of the fields are completely optional. -For now, just click the ``Create Repository'' button, and boom – you have a new repository on GitHub, named `/`. +For now, just click the "`Create Repository`" button, and boom -- you have a new repository on GitHub, named `/`. Since you have no code there yet, GitHub will show you instructions for how to create a brand-new Git repository, or connect an existing Git project. We won't belabor this here; if you need a refresher, check out <>. Now that your project is hosted on GitHub, you can give the URL to anyone you want to share your project with. -Every project on GitHub is accessible over HTTPS as `https://github.com//`, and over SSH as `git@github.com:/`. +Every project on GitHub is accessible over HTTPS as `\https://github.com//`, and over SSH as `\git@github.com:/`. Git can fetch from and push to both of these URLs, but they are access-controlled based on the credentials of the user connecting to them. [NOTE] @@ -39,22 +39,22 @@ The HTTPS one is also exactly the same URL they would paste into a browser to vi ==== Adding Collaborators -If you're working with other people who you want to give commit access to, you need to add them as ``collaborators''. +If you're working with other people who you want to give commit access to, you need to add them as "`collaborators`". If Ben, Jeff, and Louise all sign up for accounts on GitHub, and you want to give them push access to your repository, you can add them to your project. -Doing so will give them ``push'' access, which means they have both read and write access to the project and Git repository. +Doing so will give them "`push`" access, which means they have both read and write access to the project and Git repository. -Click the ``Settings'' link at the bottom of the right-hand sidebar. +Click the "`Settings`" link at the bottom of the right-hand sidebar. -.The repository settings link. -image::images/reposettingslink.png[The repository settings link.] +.The repository settings link +image::images/reposettingslink.png[The repository settings link] -Then select ``Collaborators'' from the menu on the left-hand side. -Then, just type a username into the box, and click ``Add collaborator.'' +Then select "`Collaborators`" from the menu on the left-hand side. +Then, just type a username into the box, and click "`Add collaborator.`" You can repeat this as many times as you like to grant access to everyone you like. -If you need to revoke access, just click the ``X'' on the right-hand side of their row. +If you need to revoke access, just click the "`X`" on the right-hand side of their row. -.Repository collaborators. -image::images/collaborators.png[The repository collaborators box.] +.The repository collaborators box +image::images/collaborators.png[The repository collaborators box] ==== Managing Pull Requests @@ -63,7 +63,7 @@ Now that you have a project with some code in it and maybe even a few collaborat Pull Requests can either come from a branch in a fork of your repository or they can come from another branch in the same repository. The only difference is that the ones in a fork are often from people where you can't push to their branch and they can't push to yours, whereas with internal Pull Requests generally both parties can access the branch. -For these examples, let's assume you are ``tonychacon'' and you've created a new Arduino code project named ``fade''. +For these examples, let's assume you are "`tonychacon`" and you've created a new Arduino code project named "`fade`". [[_email_notifications]] ===== Email Notifications @@ -72,8 +72,8 @@ Someone comes along and makes a change to your code and sends you a Pull Request You should get an email notifying you about the new Pull Request and it should look something like <<_email_pr>>. [[_email_pr]] -.Email notification of a new Pull Request. -image::images/maint-01-email.png[Pull Request email notification] +.Email notification of a new Pull Request +image::images/maint-01-email.png[Email notification of a new Pull Request] There are a few things to notice about this email. It will give you a small diffstat -- a list of files that have changed in the Pull Request and by how much. @@ -89,7 +89,7 @@ You could technically merge in the Pull Request work with something like this: [source,console] ---- -$ curl http://github.com/tonychacon/fade/pull/1.patch | git am +$ curl https://github.com/tonychacon/fade/pull/1.patch | git am ---- ===== Collaborating on the Pull Request @@ -100,19 +100,19 @@ You can comment on specific lines of code, comment on whole commits or comment o Every time someone else comments on the Pull Request you will continue to get email notifications so you know there is activity happening. They will each have a link to the Pull Request where the activity is happening and you can also directly respond to the email to comment on the Pull Request thread. -.Responses to emails are included in the thread. -image::images/maint-03-email-resp.png[Email response] +.Responses to emails are included in the thread +image::images/maint-03-email-resp.png[Responses to emails are included in the thread] Once the code is in a place you like and want to merge it in, you can either pull the code down and merge it locally, either with the `git pull ` syntax we saw earlier, or by adding the fork as a remote and fetching and merging. -If the merge is trivial, you can also just hit the ``Merge'' button on the GitHub site. -This will do a ``non-fast-forward'' merge, creating a merge commit even if a fast-forward merge was possible. +If the merge is trivial, you can also just hit the "`Merge`" button on the GitHub site. +This will do a "`non-fast-forward`" merge, creating a merge commit even if a fast-forward merge was possible. This means that no matter what, every time you hit the merge button, a merge commit is created. As you can see in <<_merge_button>>, GitHub gives you all of this information if you click the hint link. [[_merge_button]] -.Merge button and instructions for merging a Pull Request manually. -image::images/maint-02-merge.png[Merge button] +.Merge button and instructions for merging a Pull Request manually +image::images/maint-02-merge.png[Merge button and instructions for merging a Pull Request manually] If you decide you don't want to merge it, you can also just close the Pull Request and the person who opened it will be notified. @@ -125,10 +125,10 @@ This is a bit of an advanced trick and we'll go over the details of this a bit m GitHub actually advertises the Pull Request branches for a repository as sort of pseudo-branches on the server. By default you don't get them when you clone, but they are there in an obscured way and you can access them pretty easily. -To demonstrate this, we're going to use a low-level command (often referred to as a ``plumbing'' command, which we'll read about more in <>) called `ls-remote`. +To demonstrate this, we're going to use a low-level command (often referred to as a "`plumbing`" command, which we'll read about more in <>) called `ls-remote`. This command is generally not used in day-to-day Git operations but it's useful to show us what references are present on the server. -If we run this command against the ``blink'' repository we were using earlier, we will get a list of all the branches and tags and other references in the repository. +If we run this command against the "`blink`" repository we were using earlier, we will get a list of all the branches and tags and other references in the repository. [source,console] ---- @@ -161,7 +161,7 @@ From https://github.com/libgit2/libgit2 * branch refs/pull/958/head -> FETCH_HEAD ---- -This tells Git, ``Connect to the `origin` remote, and download the ref named `refs/pull/958/head`.'' +This tells Git, "`Connect to the `origin` remote, and download the ref named `refs/pull/958/head`.`" Git happily obeys, and downloads everything you need to construct that ref, and puts a pointer to the commit you want under `.git/FETCH_HEAD`. You can follow that up with `git merge FETCH_HEAD` into a branch you want to test it in, but that merge commit message looks a bit weird. Also, if you're reviewing a *lot* of pull requests, this gets tedious. @@ -177,7 +177,7 @@ It should look a bit like this: fetch = +refs/heads/*:refs/remotes/origin/* ---- -That line that begins with `fetch =` is a ``refspec.'' +That line that begins with `fetch =` is a "`refspec.`" It's a way of mapping names on the remote with names in your local `.git` directory. This particular one tells Git, "the things on the remote that are under `refs/heads` should go in my local repository under `refs/remotes/origin`." You can modify this section to add another refspec: @@ -190,7 +190,7 @@ You can modify this section to add another refspec: fetch = +refs/pull/*/head:refs/remotes/origin/pr/* ---- -That last line tells Git, ``All the refs that look like `refs/pull/123/head` should be stored locally like `refs/remotes/origin/pr/123`.'' +That last line tells Git, "`All the refs that look like `refs/pull/123/head` should be stored locally like `refs/remotes/origin/pr/123`.`" Now, if you save that file, and do a `git fetch`: [source,console] @@ -215,10 +215,9 @@ Switched to a new branch 'pr/2' ---- The eagle-eyed among you would note the `head` on the end of the remote portion of the refspec. -There's also a `refs/pull/#/merge` ref on the GitHub side, which represents the commit that would result if you push the ``merge'' button on the site. +There's also a `refs/pull/#/merge` ref on the GitHub side, which represents the commit that would result if you push the "`merge`" button on the site. This can allow you to test the merge before even hitting the button. - ===== Pull Requests on Pull Requests Not only can you open Pull Requests that target the main or `master` branch, you can actually open a Pull Request targeting any branch in the network. @@ -227,11 +226,11 @@ In fact, you can even target another Pull Request. If you see a Pull Request that is moving in the right direction and you have an idea for a change that depends on it or you're not sure is a good idea, or you just don't have push access to the target branch, you can open a Pull Request directly to it. When you go to open a Pull Request, there is a box at the top of the page that specifies which branch you're requesting to pull to and which you're requesting to pull from. -If you hit the ``Edit'' button at the right of that box you can change not only the branches but also which fork. +If you hit the "`Edit`" button at the right of that box you can change not only the branches but also which fork. [[_pr_targets]] -.Manually change the Pull Request target fork and branch. -image::images/maint-04-target.png[PR targets] +.Manually change the Pull Request target fork and branch +image::images/maint-04-target.png[Manually change the Pull Request target fork and branch] Here you can fairly easily specify to merge your new branch into another Pull Request or another fork of the project. @@ -241,8 +240,8 @@ GitHub also has a pretty nice notifications system built in that can come in han In any comment you can start typing a `@` character and it will begin to autocomplete with the names and usernames of people who are collaborators or contributors in the project. -.Start typing @ to mention someone. -image::images/maint-05-mentions.png[Mentions] +.Start typing @ to mention someone +image::images/maint-05-mentions.png[Start typing @ to mention someone] You can also mention a user who is not in that dropdown, but often the autocompleter can make it faster. @@ -250,22 +249,22 @@ Once you post a comment with a user mention, that user will be notified. This means that this can be a really effective way of pulling people into conversations rather than making them poll. Very often in Pull Requests on GitHub people will pull in other people on their teams or in their company to review an Issue or Pull Request. -If someone gets mentioned on a Pull Request or Issue, they will be ``subscribed'' to it and will continue getting notifications any time some activity occurs on it. +If someone gets mentioned on a Pull Request or Issue, they will be "`subscribed`" to it and will continue getting notifications any time some activity occurs on it. You will also be subscribed to something if you opened it, if you're watching the repository or if you comment on something. -If you no longer wish to receive notifications, there is an ``Unsubscribe'' button on the page you can click to stop receiving updates on it. +If you no longer wish to receive notifications, there is an "`Unsubscribe`" button on the page you can click to stop receiving updates on it. -.Unsubscribe from an Issue or Pull Request. -image::images/maint-06-unsubscribe.png[Unsubscribe] +.Unsubscribe from an Issue or Pull Request +image::images/maint-06-unsubscribe.png[Unsubscribe from an Issue or Pull Request] ===== The Notifications Page -When we mention ``notifications'' here with respect to GitHub, we mean a specific way that GitHub tries to get in touch with you when events happen and there are a few different ways you can configure them. -If you go to the ``Notification center'' tab from the settings page, you can see some of the options you have. +When we mention "`notifications`" here with respect to GitHub, we mean a specific way that GitHub tries to get in touch with you when events happen and there are a few different ways you can configure them. +If you go to the "`Notification center`" tab from the settings page, you can see some of the options you have. -.Notification center options. -image::images/maint-07-notifications.png[Notification center] +.Notification center options +image::images/maint-07-notifications.png[Notification center options] -The two choices are to get notifications over ``Email'' and over ``Web'' and you can choose either, neither or both for when you actively participate in things and for activity on repositories you are watching. +The two choices are to get notifications over "`Email`" and over "`Web`" and you can choose either, neither or both for when you actively participate in things and for activity on repositories you are watching. ====== Web Notifications @@ -273,7 +272,7 @@ Web notifications only exist on GitHub and you can only check them on GitHub. If you have this option selected in your preferences and a notification is triggered for you, you will see a small blue dot over your notifications icon at the top of your screen as seen in <<_not_center>>. [[_not_center]] -.Notification center. +.Notification center image::images/maint-08-notifications-page.png[Notification center] If you click on that, you will see a list of all the items you have been notified about, grouped by project. @@ -310,10 +309,10 @@ X-GitHub-Recipient-Address: tchacon@example.com There are a couple of interesting things here. If you want to highlight or re-route emails to this particular project or even Pull Request, the information in `Message-ID` gives you all the data in `///` format. -If this were an issue, for example, the `` field would have been ``issues'' rather than ``pull''. +If this was an issue, for example, the `` field would have been "`issues`" rather than "`pull`". -The `List-Post` and `List-Unsubscribe` fields mean that if you have a mail client that understands those, you can easily post to the list or ``Unsubscribe'' from the thread. -That would be essentially the same as clicking the ``mute'' button on the web version of the notification or ``Unsubscribe'' on the Issue or Pull Request page itself. +The `List-Post` and `List-Unsubscribe` fields mean that if you have a mail client that understands those, you can easily post to the list or "`Unsubscribe`" from the thread. +That would be essentially the same as clicking the "`mute`" button on the web version of the notification or "`Unsubscribe`" on the Issue or Pull Request page itself. It's also worth noting that if you have both email and web notifications enabled and you read the email version of the notification, the web version will be marked as read as well if you have images allowed in your mail client. @@ -325,7 +324,7 @@ There are a couple of special files that GitHub will notice if they are present The first is the `README` file, which can be of nearly any format that GitHub recognizes as prose. For example, it could be `README`, `README.md`, `README.asciidoc`, etc. -If GitHub sees a README file in your source, it will render it on the landing page of the project. +If GitHub sees a `README` file in your source, it will render it on the landing page of the project. Many teams use this file to hold all the relevant project information for someone who might be new to the repository or project. This generally includes things like: @@ -344,8 +343,8 @@ The other special file that GitHub recognizes is the `CONTRIBUTING` file. If you have a file named `CONTRIBUTING` with any file extension, GitHub will show <<_contrib_file>> when anyone starts opening a Pull Request. [[_contrib_file]] -.Opening a Pull Request when a CONTRIBUTING file exists. -image::images/maint-09-contrib.png[Contributing notice] +.Opening a Pull Request when a CONTRIBUTING file exists +image::images/maint-09-contrib.png[Opening a Pull Request when a CONTRIBUTING file exists] The idea here is that you can specify specific things you want or don't want in a Pull Request sent to your project. This way people may actually read the guidelines before opening the Pull Request. @@ -356,21 +355,21 @@ Generally there are not a lot of administrative things you can do with a single ===== Changing the Default Branch -If you are using a branch other than ``master'' as your default branch that you want people to open Pull Requests on or see by default, you can change that in your repository's settings page under the ``Options'' tab. +If you are using a branch other than "`master`" as your default branch that you want people to open Pull Requests on or see by default, you can change that in your repository's settings page under the "`Options`" tab. [[_default_branch]] -.Change the default branch for a project. -image::images/maint-10-default-branch.png[Default branch] +.Change the default branch for a project +image::images/maint-10-default-branch.png[Change the default branch for a project] Simply change the default branch in the dropdown and that will be the default for all major operations from then on, including which branch is checked out by default when someone clones the repository. ===== Transferring a Project -If you would like to transfer a project to another user or an organization in GitHub, there is a ``Transfer ownership'' option at the bottom of the same ``Options'' tab of your repository settings page that allows you to do this. +If you would like to transfer a project to another user or an organization in GitHub, there is a "`Transfer ownership`" option at the bottom of the same "`Options`" tab of your repository settings page that allows you to do this. [[_transfer_project]] -.Transfer a project to another GitHub user or Organization. -image::images/maint-11-transfer.png[Transfer] +.Transfer a project to another GitHub user or Organization +image::images/maint-11-transfer.png[Transfer a project to another GitHub user or Organization] This is helpful if you are abandoning a project and someone wants to take it over, or if your project is getting bigger and want to move it into an organization. diff --git a/book/06-github/sections/4-managing-organization.asc b/book/06-github/sections/4-managing-organization.asc index f3137e5dc..cdb2447ab 100644 --- a/book/06-github/sections/4-managing-organization.asc +++ b/book/06-github/sections/4-managing-organization.asc @@ -5,14 +5,14 @@ In addition to single-user accounts, GitHub has what are called Organizations. Like personal accounts, Organizational accounts have a namespace where all their projects exist, but many other things are different. These accounts represent a group of people with shared ownership of projects, and there are many tools to manage subgroups of those people. -Normally these accounts are used for Open Source groups (such as ``perl'' or ``rails'') or companies (such as ``google'' or ``twitter''). +Normally these accounts are used for Open Source groups (such as "`perl`" or "`rails`") or companies (such as "`google`" or "`twitter`"). ==== Organization Basics -An organization is pretty easy to create; just click on the ``+'' icon at the top-right of any GitHub page, and select ``New organization'' from the menu. +An organization is pretty easy to create; just click on the "`+`" icon at the top-right of any GitHub page, and select "`New organization`" from the menu. -.The ``New organization'' menu item. -image::images/neworg.png[The ``New organization'' menu item.] +.The "`New organization`" menu item +image::images/neworg.png[The “New organization” menu item] First you'll need to name your organization and provide an email address for a main point of contact for the group. Then you can invite other users to be co-owners of the account if you want to. @@ -22,7 +22,7 @@ Like personal accounts, organizations are free if everything you plan to store t As an owner in an organization, when you fork a repository, you'll have the choice of forking it to your organization's namespace. When you create new repositories you can create them either under your personal account or under any of the organizations that you are an owner in. -You also automatically ``watch'' any new repository created under these organizations. +You also automatically "`watch`" any new repository created under these organizations. Just like in <<_personal_avatar>>, you can upload an avatar for your organization to personalize it a bit. Also just like personal accounts, you have a landing page for the organization that lists all of your repositories and can be viewed by other people. @@ -40,17 +40,17 @@ Teams make this easy, without having to manage the collaborators for every indiv The Organization page shows you a simple dashboard of all the repositories, users and teams that are under this organization. [[_org_page]] -.The Organization page. -image::images/orgs-01-page.png[] +.The Organization page +image::images/orgs-01-page.png[The Organization page] To manage your Teams, you can click on the Teams sidebar on the right hand side of the page in <<_org_page>>. This will bring you to a page you can use to add members to the team, add repositories to the team or manage the settings and access control levels for the team. Each team can have read only, read/write or administrative access to the repositories. -You can change that level by clicking the ``Settings'' button in <<_team_page>>. +You can change that level by clicking the "`Settings`" button in <<_team_page>>. [[_team_page]] -.The Team page. -image::images/orgs-02-teams.png[] +.The Team page +image::images/orgs-02-teams.png[The Team page] When you invite someone to a team, they will get an email letting them know they've been invited. @@ -66,7 +66,7 @@ Organizations also give owners access to all the information about what went on You can go to the 'Audit Log' tab and see what events have happened at an organization level, who did them and where in the world they were done. [[_the_audit_log]] -.The Audit log. -image::images/orgs-03-audit.png[] +.The Audit log +image::images/orgs-03-audit.png[The Audit log] You can also filter down to specific types of events, specific places or specific people. diff --git a/book/06-github/sections/5-scripting.asc b/book/06-github/sections/5-scripting.asc index 6bfb16e77..c755afa17 100644 --- a/book/06-github/sections/5-scripting.asc +++ b/book/06-github/sections/5-scripting.asc @@ -13,22 +13,22 @@ The Hooks and Services section of GitHub repository administration is the easies First we'll take a look at Services. Both the Hooks and Services integrations can be found in the Settings section of your repository, where we previously looked at adding Collaborators and changing the default branch of your project. -Under the ``Webhooks and Services'' tab you will see something like <<_services_hooks>>. +Under the "`Webhooks and Services`" tab you will see something like <<_services_hooks>>. [[_services_hooks]] -.Services and Hooks configuration section. -image::images/scripting-01-services.png[Services and hooks] +.Services and Hooks configuration section +image::images/scripting-01-services.png[Services and Hooks configuration section] There are dozens of services you can choose from, most of them integrations into other commercial and open source systems. Most of them are for Continuous Integration services, bug and issue trackers, chat room systems and documentation systems. We'll walk through setting up a very simple one, the Email hook. -If you choose ``email'' from the ``Add Service'' dropdown, you'll get a configuration screen like <<_service_config>>. +If you choose "`email`" from the "`Add Service`" dropdown, you'll get a configuration screen like <<_service_config>>. [[_service_config]] -.Email service configuration. -image::images/scripting-02-email-service.png[Email service] +.Email service configuration +image::images/scripting-02-email-service.png[Email service configuration] -In this case, if we hit the ``Add service'' button, the email address we specified will get an email every time someone pushes to the repository. +In this case, if we hit the "`Add service`" button, the email address we specified will get an email every time someone pushes to the repository. Services can listen for lots of different types of events, but most only listen for push events and then do something with that data. If there is a system you are using that you would like to integrate with GitHub, you should check here to see if there is an existing service integration available. @@ -42,15 +42,15 @@ You specify a URL and GitHub will post an HTTP payload to that URL on any event Generally the way this works is you can setup a small web service to listen for a GitHub hook payload and then do something with the data when it is received. -To enable a hook, you click the ``Add webhook'' button in <<_services_hooks>>. +To enable a hook, you click the "`Add webhook`" button in <<_services_hooks>>. This will bring you to a page that looks like <<_web_hook>>. [[_web_hook]] -.Web hook configuration. -image::images/scripting-03-webhook.png[Web hook] +.Web hook configuration +image::images/scripting-03-webhook.png[Web hook configuration] The configuration for a web hook is pretty simple. -In most cases you simply enter a URL and a secret key and hit ``Add webhook''. +In most cases you simply enter a URL and a secret key and hit "`Add webhook`". There are a few options for which events you want GitHub to send you a payload for -- the default is to only get a payload for the `push` event, when someone pushes new code to any branch of your repository. Let's see a small example of a web service you may set up to handle a web hook. @@ -102,12 +102,12 @@ For each hook you can dig down into when it was delivered, if it was successful This makes it incredibly easy to test and debug your hooks. [[_web_hook_debug]] -.Web hook debugging information. -image::images/scripting-04-webhook-debug.png[Webhook debug] +.Web hook debugging information +image::images/scripting-04-webhook-debug.png[Web hook debugging information] The other great feature of this is that you can redeliver any of the payloads to test your service easily. -For more information on how to write webhooks and all the different event types you can listen for, go to the GitHub Developer documentation at https://developer.github.com/webhooks/ +For more information on how to write webhooks and all the different event types you can listen for, go to the GitHub Developer documentation at https://docs.github.com/en/webhooks-and-events/webhooks/about-webhooks[^]. ==== The GitHub API @@ -123,7 +123,7 @@ In this section we'll learn how to authenticate and connect to the API, how to c The most basic thing you can do is a simple GET request on an endpoint that doesn't require authentication. This could be a user or read-only information on an open source project. -For example, if we want to know more about a user named ``schacon'', we can run something like this: +For example, if we want to know more about a user named "`schacon`", we can run something like this: [source,javascript] ---- @@ -159,24 +159,23 @@ $ curl https://api.github.com/gitignore/templates/Java *.war *.ear -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +# virtual machine crash logs, see https://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* " } ---- - ==== Commenting on an Issue However, if you want to do an action on the website such as comment on an Issue or Pull Request or if you want to view or interact with private content, you'll need to authenticate. There are several ways to authenticate. You can use basic authentication with just your username and password, but generally it's a better idea to use a personal access token. -You can generate this from the ``Applications'' tab of your settings page. +You can generate this from the "`Applications`" tab of your settings page. [[_access_token]] -.Generate your access token from the ``Applications'' tab of your settings page. -image::images/scripting-05-access-token.png[Access Token] +.Generate your access token from the "`Applications`" tab of your settings page +image::images/scripting-05-access-token.png[Generate your access token from the “Applications” tab of your settings page] It will ask you which scopes you want for this token and a description. Make sure to use a good description so you feel comfortable removing the token when your script or application is no longer used. @@ -218,8 +217,8 @@ $ curl -H "Content-Type: application/json" \ Now if you go to that issue, you can see the comment that we just successfully posted as in <<_api_comment>>. [[_api_comment]] -.A comment posted from the GitHub API. -image::images/scripting-06-comment.png[API Comment] +.A comment posted from the GitHub API +image::images/scripting-06-comment.png[A comment posted from the GitHub API] You can use the API to do just about anything you can do on the website -- creating and setting milestones, assigning people to Issues and Pull Requests, creating and changing labels, accessing commit data, creating new commits and branches, opening, closing or merging Pull Requests, creating and editing teams, commenting on lines of code in a Pull Request, searching the site and on and on. @@ -279,16 +278,16 @@ end Hopefully this is fairly simple to follow. In this web hook handler we look through each commit that was just pushed, we look for the string 'Signed-off-by' in the commit message and finally we POST via HTTP to the `/repos///statuses/` API endpoint with the status. -In this case you can send a state ('success', 'failure', 'error'), a description of what happened, a target URL the user can go to for more information and a ``context'' in case there are multiple statuses for a single commit. -For example, a testing service may provide a status and a validation service like this may also provide a status -- the ``context'' field is how they're differentiated. +In this case you can send a state ('success', 'failure', 'error'), a description of what happened, a target URL the user can go to for more information and a "`context`" in case there are multiple statuses for a single commit. +For example, a testing service may provide a status and a validation service like this may also provide a status -- the "`context`" field is how they're differentiated. If someone opens a new Pull Request on GitHub and this hook is set up, you may see something like <<_commit_status>>. [[_commit_status]] -.Commit status via the API. -image::images/scripting-07-status.png[Commit status] +.Commit status via the API +image::images/scripting-07-status.png[Commit status via the API] -You can now see a little green check mark next to the commit that has a ``Signed-off-by'' string in the message and a red cross through the one where the author forgot to sign off. +You can now see a little green check mark next to the commit that has a "`Signed-off-by`" string in the message and a red cross through the one where the author forgot to sign off. You can also see that the Pull Request takes the status of the last commit on the branch and warns you if it is a failure. This is really useful if you're using this API for test results so you don't accidentally merge something where the last commit is failing tests. @@ -296,7 +295,7 @@ This is really useful if you're using this API for test results so you don't acc Though we've been doing nearly everything through `curl` and simple HTTP requests in these examples, several open-source libraries exist that make this API available in a more idiomatic way. At the time of this writing, the supported languages include Go, Objective-C, Ruby, and .NET. -Check out http://github.com/octokit[] for more information on these, as they handle much of the HTTP for you. +Check out https://github.com/octokit[^] for more information on these, as they handle much of the HTTP for you. Hopefully these tools can help you customize and modify GitHub to work better for your specific workflows. -For complete documentation on the entire API as well as guides for common tasks, check out https://developer.github.com[]. +For complete documentation on the entire API as well as guides for common tasks, check out https://docs.github.com/[^]. diff --git a/book/07-git-tools/callouts/1.pdf b/book/07-git-tools/callouts/1.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/10.pdf b/book/07-git-tools/callouts/10.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/2.pdf b/book/07-git-tools/callouts/2.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/3.pdf b/book/07-git-tools/callouts/3.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/4.pdf b/book/07-git-tools/callouts/4.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/5.pdf b/book/07-git-tools/callouts/5.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/6.pdf b/book/07-git-tools/callouts/6.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/7.pdf b/book/07-git-tools/callouts/7.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/8.pdf b/book/07-git-tools/callouts/8.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/callouts/9.pdf b/book/07-git-tools/callouts/9.pdf old mode 100755 new mode 100644 diff --git a/book/07-git-tools/git-credential-read-only b/book/07-git-tools/git-credential-read-only index b98833c4e..9e984dca9 100755 --- a/book/07-git-tools/git-credential-read-only +++ b/book/07-git-tools/git-credential-read-only @@ -11,7 +11,7 @@ OptionParser.new do |opts| end.parse! exit(0) unless ARGV[0].downcase == 'get' # <2> -exit(0) unless File.exists? path +exit(0) unless File.exist? path known = {} # <3> while line = STDIN.gets diff --git a/book/07-git-tools/sections/advanced-merging.asc b/book/07-git-tools/sections/advanced-merging.asc index 24e66221b..7ace27bcd 100644 --- a/book/07-git-tools/sections/advanced-merging.asc +++ b/book/07-git-tools/sections/advanced-merging.asc @@ -19,7 +19,7 @@ While we covered some basics on resolving merge conflicts in <>. +To get a full list of all of the unique commits that were included in either branch involved in this merge, we can use the "`triple dot`" syntax that we learned in <>. [source,console] ---- $ git log --oneline --left-right HEAD...MERGE_HEAD -< f1270f7 update README -< 9af9d3b add a README -< 694971d update phrase to hola world -> e3eb223 add more tests -> 7cff591 add testing script -> c3ffff1 changed text to hello mundo +< f1270f7 Update README +< 9af9d3b Create README +< 694971d Update phrase to 'hola world' +> e3eb223 Add more tests +> 7cff591 Create initial testing script +> c3ffff1 Change text to 'hello mundo' ---- That's a nice list of the six total commits involved, as well as which line of development each commit was on. @@ -427,8 +427,8 @@ If we add the `--merge` option to `git log`, it will only show the commits in ei [source,console] ---- $ git log --oneline --left-right --merge -< 694971d update phrase to hola world -> c3ffff1 changed text to hello mundo +< 694971d Update phrase to 'hola world' +> c3ffff1 Change text to 'hello mundo' ---- If you run that with the `-p` option instead, you get just the diffs to the file that ended up in conflict. @@ -462,8 +462,8 @@ index 0399cd5,59727f0..0000000 hello() ---- -The format is called ``Combined Diff'' and gives you two columns of data next to each line. -The first column shows you if that line is different (added or removed) between the ``ours'' branch and the file in your working directory and the second column does the same between the ``theirs'' branch and your working directory copy. +The format is called "`Combined Diff`" and gives you two columns of data next to each line. +The first column shows you if that line is different (added or removed) between the "`ours`" branch and the file in your working directory and the second column does the same between the "`theirs`" branch and your working directory copy. So in that example you can see that the `<<<<<<<` and `>>>>>>>` lines are in the working copy but were not in either side of the merge. This makes sense because the merge tool stuck them in there for our context, but we're expected to remove them. @@ -490,7 +490,7 @@ index 0399cd5,59727f0..0000000 hello() ---- -This shows us that ``hola world'' was in our side but not in the working copy, that ``hello mundo'' was in their side but not in the working copy and finally that ``hola mundo'' was not in either side but is now in the working copy. +This shows us that "`hola world`" was in our side but not in the working copy, that "`hello mundo`" was in their side but not in the working copy and finally that "`hola mundo`" was not in either side but is now in the working copy. This can be useful to review before committing the resolution. You can also get this from the `git log` for any merge to see how something was resolved after the fact. @@ -535,7 +535,7 @@ Merge commits are no different. Let's say you started work on a topic branch, accidentally merged it into `master`, and now your commit history looks like this: .Accidental merge commit -image::images/undomerge-start.png[Accidental merge commit.] +image::images/undomerge-start.png[Accidental merge commit] There are two ways to approach this problem, depending on what your desired outcome is. @@ -545,7 +545,7 @@ If the unwanted merge commit only exists on your local repository, the easiest a In most cases, if you follow the errant `git merge` with `git reset --hard HEAD~`, this will reset the branch pointers so they look like this: .History after `git reset --hard HEAD~` -image::images/undomerge-reset.png[History after `git reset --hard HEAD~`.] +image::images/undomerge-reset.png[History after `git reset --hard HEAD~`] We covered `reset` back in <>, so it shouldn't be too hard to figure out what's going on here. Here's a quick refresher: `reset --hard` usually goes through three steps: @@ -563,7 +563,7 @@ This approach also won't work if any other commits have been created since the m ===== Reverse the commit If moving the branch pointers around isn't going to work for you, Git gives you the option of making a new commit which undoes all the changes from an existing one. -Git calls this operation a ``revert'', and in this particular scenario, you'd invoke it like this: +Git calls this operation a "`revert`", and in this particular scenario, you'd invoke it like this: [source,console] ---- @@ -571,17 +571,17 @@ $ git revert -m 1 HEAD [master b1d8379] Revert "Merge branch 'topic'" ---- -The `-m 1` flag indicates which parent is the ``mainline'' and should be kept. +The `-m 1` flag indicates which parent is the "`mainline`" and should be kept. When you invoke a merge into `HEAD` (`git merge topic`), the new commit has two parents: the first one is `HEAD` (`C6`), and the second is the tip of the branch being merged in (`C4`). In this case, we want to undo all the changes introduced by merging in parent #2 (`C4`), while keeping all the content from parent #1 (`C6`). The history with the revert commit looks like this: .History after `git revert -m 1` -image::images/undomerge-revert.png[History after `git revert -m 1`.] +image::images/undomerge-revert.png[History after `git revert -m 1`] -The new commit `^M` has exactly the same contents as `C6`, so starting from here it's as if the merge never happened, except that the now-unmerged commits are still in `HEAD`'s history. -Git will get confused if you try to merge `topic` into `master` again: +The new commit `^M` has exactly the same contents as `C6`, so starting from here it's as if the merge never happened, except that the now-unmerged commits are still in ``HEAD```'s history. +Git will get confused if you try to merge ``topic`` into ``master`` again: [source,console] ---- @@ -593,7 +593,7 @@ There's nothing in `topic` that isn't already reachable from `master`. What's worse, if you add work to `topic` and merge again, Git will only bring in the changes _since_ the reverted merge: .History with a bad merge -image::images/undomerge-revert2.png[History with a bad merge.] +image::images/undomerge-revert2.png[History with a bad merge] The best way around this is to un-revert the original merge, since now you want to bring in the changes that were reverted out, *then* create a new merge commit: @@ -605,20 +605,20 @@ $ git merge topic ---- .History after re-merging a reverted merge -image::images/undomerge-revert3.png[History after re-merging a reverted merge.] +image::images/undomerge-revert3.png[History after re-merging a reverted merge] In this example, `M` and `^M` cancel out. `^^M` effectively merges in the changes from `C3` and `C4`, and `C8` merges in the changes from `C7`, so now `topic` is fully merged. ==== Other Types of Merges -So far we've covered the normal merge of two branches, normally handled with what is called the ``recursive'' strategy of merging. +So far we've covered the normal merge of two branches, normally handled with what is called the "`recursive`" strategy of merging. There are other ways to merge branches together however. Let's cover a few of them quickly. ===== Our or Theirs Preference -First of all, there is another useful thing we can do with the normal ``recursive'' mode of merging. +First of all, there is another useful thing we can do with the normal "`recursive`" mode of merging. We've already seen the `ignore-all-space` and `ignore-space-change` options which are passed with a `-X` but we can also tell Git to favor one side or the other when it sees a conflict. By default, when Git sees a conflict between two branches being merged, it will add merge conflict markers into your code and mark the file as conflicted and let you resolve it. @@ -628,7 +628,7 @@ If Git sees this, it will not add conflict markers. Any differences that are mergeable, it will merge. Any differences that conflict, it will simply choose the side you specify in whole, including binary files. -If we go back to the ``hello world'' example we were using before, we can see that merging in our branch causes conflicts. +If we go back to the "`hello world`" example we were using before, we can see that merging in our branch causes conflicts. [source,console] ---- @@ -652,13 +652,13 @@ Merge made by the 'recursive' strategy. create mode 100644 test.sh ---- -In that case, instead of getting conflict markers in the file with ``hello mundo'' on one side and ``hola world'' on the other, it will simply pick ``hola world''. +In that case, instead of getting conflict markers in the file with "`hello mundo`" on one side and "`hola world`" on the other, it will simply pick "`hola world`". However, all the other non-conflicting changes on that branch are merged successfully in. This option can also be passed to the `git merge-file` command we saw earlier by running something like `git merge-file --ours` for individual file merges. -If you want to do something like this but not have Git even try to merge changes from the other side in, there is a more draconian option, which is the ``ours'' merge _strategy_. -This is different from the ``ours'' recursive merge _option_. +If you want to do something like this but not have Git even try to merge changes from the other side in, there is a more draconian option, which is the "`ours`" merge _strategy_. +This is different from the "`ours`" recursive merge _option_. This will basically do a fake merge. It will record a new merge commit with both branches as parents, but it will not even look at the branch you're merging in. diff --git a/book/07-git-tools/sections/bundling.asc b/book/07-git-tools/sections/bundling.asc index 85dbf8235..79cb1b8a5 100644 --- a/book/07-git-tools/sections/bundling.asc +++ b/book/07-git-tools/sections/bundling.asc @@ -3,7 +3,7 @@ Though we've covered the common ways to transfer Git data over a network (HTTP, SSH, etc), there is actually one more way to do so that is not commonly used but can actually be quite useful. -Git is capable of ``bundling'' its data into a single file. +Git is capable of "`bundling`" its data into a single file. This can be useful in various scenarios. Maybe your network is down and you want to send changes to your co-workers. Perhaps you're working somewhere offsite and don't have access to the local network for security reasons. @@ -23,13 +23,13 @@ commit 9a466c572fe88b195efd356c3f2bbeccdb504102 Author: Scott Chacon Date: Wed Mar 10 07:34:10 2010 -0800 - second commit + Second commit commit b1ec3248f39900d2a406049d762aa68e9641be25 Author: Scott Chacon Date: Wed Mar 10 07:34:01 2010 -0800 - first commit + First commit ---- If you want to send that repository to someone and you don't have access to a repository to push to, or simply don't want to set one up, you can bundle it with `git bundle create`. @@ -60,8 +60,8 @@ Cloning into 'repo'... ... $ cd repo $ git log --oneline -9a466c5 second commit -b1ec324 first commit +9a466c5 Second commit +b1ec324 First commit ---- If you don't include HEAD in the references, you have to also specify `-b master` or whatever branch is included because otherwise it won't know what branch to check out. @@ -71,28 +71,28 @@ Now let's say you do three commits on it and want to send the new commits back v [source,console] ---- $ git log --oneline -71b84da last commit - second repo -c99cf5b fourth commit - second repo -7011d3d third commit - second repo -9a466c5 second commit -b1ec324 first commit +71b84da Last commit - second repo +c99cf5b Fourth commit - second repo +7011d3d Third commit - second repo +9a466c5 Second commit +b1ec324 First commit ---- First we need to determine the range of commits we want to include in the bundle. Unlike the network protocols which figure out the minimum set of data to transfer over the network for us, we'll have to figure this out manually. - Now, you could just do the same thing and bundle the entire repository, which will work, but it's better to just bundle up the difference - just the three commits we just made locally. +Now, you could just do the same thing and bundle the entire repository, which will work, but it's better to just bundle up the difference - just the three commits we just made locally. In order to do that, you'll have to calculate the difference. As we described in <>, you can specify a range of commits in a number of ways. -To get the three commits that we have in our master branch that weren't in the branch we originally cloned, we can use something like `origin/master..master` or `master ^origin/master`. +To get the three commits that we have in our `master` branch that weren't in the branch we originally cloned, we can use something like `origin/master..master` or `master ^origin/master`. You can test that with the `log` command. [source,console] ---- $ git log --oneline master ^origin/master -71b84da last commit - second repo -c99cf5b fourth commit - second repo -7011d3d third commit - second repo +71b84da Last commit - second repo +c99cf5b Fourth commit - second repo +7011d3d Third commit - second repo ---- So now that we have the list of commits we want to include in the bundle, let's bundle them up. @@ -131,7 +131,7 @@ The `verify` command would have looked like this instead: ---- $ git bundle verify ../commits-bad.bundle error: Repository lacks these prerequisite commits: -error: 7011d3d8fc200abe0ad561c011c3852a4b7bbe95 third commit - second repo +error: 7011d3d8fc200abe0ad561c011c3852a4b7bbe95 Third commit - second repo ---- However, our first bundle is valid, so we can fetch in commits from it. @@ -145,7 +145,7 @@ $ git bundle list-heads ../commits.bundle The `verify` sub-command will tell you the heads as well. The point is to see what can be pulled in, so you can use the `fetch` or `pull` commands to import commits from this bundle. -Here we'll fetch the 'master' branch of the bundle to a branch named 'other-master' in our repository: +Here we'll fetch the `master` branch of the bundle to a branch named `other-master` in our repository: [source,console] ---- @@ -154,18 +154,18 @@ From ../commits.bundle * [new branch] master -> other-master ---- -Now we can see that we have the imported commits on the 'other-master' branch as well as any commits we've done in the meantime in our own 'master' branch. +Now we can see that we have the imported commits on the `other-master` branch as well as any commits we've done in the meantime in our own `master` branch. [source,console] ---- $ git log --oneline --decorate --graph --all -* 8255d41 (HEAD, master) third commit - first repo -| * 71b84da (other-master) last commit - second repo -| * c99cf5b fourth commit - second repo -| * 7011d3d third commit - second repo +* 8255d41 (HEAD, master) Third commit - first repo +| * 71b84da (other-master) Last commit - second repo +| * c99cf5b Fourth commit - second repo +| * 7011d3d Third commit - second repo |/ -* 9a466c5 second commit -* b1ec324 first commit +* 9a466c5 Second commit +* b1ec324 First commit ---- So, `git bundle` can be really useful for sharing or doing network-type operations when you don't have the proper network or shared repository to do so. diff --git a/book/07-git-tools/sections/credentials.asc b/book/07-git-tools/sections/credentials.asc index 9e74ff08a..7c7bc6ed5 100644 --- a/book/07-git-tools/sections/credentials.asc +++ b/book/07-git-tools/sections/credentials.asc @@ -4,7 +4,7 @@ (((credentials))) (((git commands, credential))) If you use the SSH transport for connecting to remotes, it's possible for you to have a key without a passphrase, which allows you to securely transfer data without typing in your username and password. -However, this isn't possible with the HTTP protocols – every connection needs a username and password. +However, this isn't possible with the HTTP protocols -- every connection needs a username and password. This gets even harder for systems with two-factor authentication, where the token you use for a password is randomly generated and unpronounceable. Fortunately, Git has a credentials system that can help with this. @@ -12,16 +12,17 @@ Git has a few options provided in the box: * The default is not to cache at all. Every connection will prompt you for your username and password. -* The ``cache'' mode keeps credentials in memory for a certain period of time. +* The "`cache`" mode keeps credentials in memory for a certain period of time. None of the passwords are ever stored on disk, and they are purged from the cache after 15 minutes. -* The ``store'' mode saves the credentials to a plain-text file on disk, and they never expire. +* The "`store`" mode saves the credentials to a plain-text file on disk, and they never expire. This means that until you change your password for the Git host, you won't ever have to type in your credentials again. The downside of this approach is that your passwords are stored in cleartext in a plain file in your home directory. -* If you're using a Mac, Git comes with an ``osxkeychain'' mode, which caches credentials in the secure keychain that's attached to your system account. +* If you're using macOS, Git comes with an "`osxkeychain`" mode, which caches credentials in the secure keychain that's attached to your system account. This method stores the credentials on disk, and they never expire, but they're encrypted with the same system that stores HTTPS certificates and Safari auto-fills. -* If you're using Windows, you can install a helper called ``Git Credential Manager for Windows.'' - This is similar to the ``osxkeychain'' helper described above, but uses the Windows Credential Store to control sensitive information. - It can be found at https://github.com/Microsoft/Git-Credential-Manager-for-Windows[]. +* If you're using Windows, you can enable the *Git Credential Manager* feature when installing https://gitforwindows.org/[Git for Windows] or separately install https://github.com/git-ecosystem/git-credential-manager/releases/latest[the latest GCM] as a standalone service. + This is similar to the "`osxkeychain`" helper described above, but uses the Windows Credential Store to control sensitive information. + It can also serve credentials to WSL1 or WSL2. + See https://github.com/git-ecosystem/git-credential-manager#readme[GCM Install Instructions] for more information. You can choose one of these methods by setting a Git configuration value: @@ -31,9 +32,9 @@ $ git config --global credential.helper cache ---- Some of these helpers have options. -The ``store'' helper can take a `--file ` argument, which customizes where the plain-text file is saved (the default is `~/.git-credentials`). -The ``cache'' helper accepts the `--timeout ` option, which changes the amount of time its daemon is kept running (the default is ``900'', or 15 minutes). -Here's an example of how you'd configure the ``store'' helper with a custom file name: +The "`store`" helper can take a `--file ` argument, which customizes where the plain-text file is saved (the default is `~/.git-credentials`). +The "`cache`" helper accepts the `--timeout ` option, which changes the amount of time its daemon is kept running (the default is "`900`", or 15 minutes). +Here's an example of how you'd configure the "`store`" helper with a custom file name: [source,console] ---- @@ -59,7 +60,7 @@ Git's root command for the credential-helper system is `git credential`, which t This might be easier to understand with an example. Let's say that a credential helper has been configured, and the helper has stored credentials for `mygithost`. -Here's a session that uses the ``fill'' command, which is invoked when Git is trying to find credentials for a host: +Here's a session that uses the "`fill`" command, which is invoked when Git is trying to find credentials for a host: [source,console] ---- @@ -103,7 +104,7 @@ There are several forms it can take: |====== So the helpers described above are actually named `git-credential-cache`, `git-credential-store`, and so on, and we can configure them to take command-line arguments. -The general form for this is ``git-credential-foo [args] .'' +The general form for this is "`git-credential-foo [args] .`" The stdin/stdout protocol is the same as git-credential, but they use a slightly different set of actions: * `get` is a request for a username/password pair. @@ -115,7 +116,7 @@ For the `get` action, however, Git is very interested in what the helper has to If the helper doesn't know anything useful, it can simply exit with no output, but if it does know, it should augment the provided information with the information it has stored. The output is treated like a series of assignment statements; anything provided will replace what Git already knows. -Here's the same example from above, but skipping git-credential and going straight for git-credential-store: +Here's the same example from above, but skipping `git-credential` and going straight for `git-credential-store`: [source,console] ---- @@ -132,7 +133,7 @@ username=bob <3> password=s3cre7 ---- -<1> Here we tell `git-credential-store` to save some credentials: the username ``bob'' and the password ``s3cre7'' are to be used when `https://mygithost` is accessed. +<1> Here we tell `git-credential-store` to save some credentials: the username "`bob`" and the password "`s3cre7`" are to be used when `https://mygithost` is accessed. <2> Now we'll retrieve those credentials. We provide the parts of the connection we already know (`https://mygithost`), and an empty line. <3> `git-credential-store` replies with the username and password we stored above. @@ -164,16 +165,17 @@ Once again, we'll write this extension in Ruby, but any language will work so lo Here's the full source code of our new credential helper: [source,ruby] --------- +---- include::../git-credential-read-only[] --------- +---- -<1> Here we parse the command-line options, allowing the user to specify the input file. The default is `~/.git-credentials`. +<1> Here we parse the command-line options, allowing the user to specify the input file. + The default is `~/.git-credentials`. <2> This program only responds if the action is `get` and the backing-store file exists. <3> This loop reads from stdin until the first blank line is reached. The inputs are stored in the `known` hash for later reference. <4> This loop reads the contents of the storage file, looking for matches. - If the protocol and host from `known` match this line, the program prints the results to stdout and exits. + If the protocol, host, and username from `known` match this line, the program prints the results to stdout and exits. We'll save our helper as `git-credential-read-only`, put it somewhere in our `PATH` and mark it executable. Here's what an interactive session looks like: @@ -183,6 +185,7 @@ Here's what an interactive session looks like: $ git credential-read-only --file=/mnt/shared/creds get protocol=https host=mygithost +username=bob protocol=https host=mygithost @@ -190,7 +193,7 @@ username=bob password=s3cre7 ---- -Since its name starts with ``git-'', we can use the simple syntax for the configuration value: +Since its name starts with "`git-`", we can use the simple syntax for the configuration value: [source,console] ---- diff --git a/book/07-git-tools/sections/debugging.asc b/book/07-git-tools/sections/debugging.asc index 093de5713..dd615c1c7 100644 --- a/book/07-git-tools/sections/debugging.asc +++ b/book/07-git-tools/sections/debugging.asc @@ -35,12 +35,12 @@ Notice that the first field is the partial SHA-1 of the commit that last modifie The next two fields are values extracted from that commit -- the author name and the authored date of that commit -- so you can easily see who modified that line and when. After that come the line number and the content of the file. Also note the `^1da177e4c3f4` commit lines, where the `^` prefix designates lines that were introduced in the repository's initial commit and have remained unchanged ever since. -This is a tad confusing, because now you’ve seen at least three different ways that Git uses the `^` to modify a commit SHA-1, but that is what it means here. +This is a tad confusing, because now you've seen at least three different ways that Git uses the `^` to modify a commit SHA-1, but that is what it means here. -Another cool thing about Git is that it doesn’t track file renames explicitly. +Another cool thing about Git is that it doesn't track file renames explicitly. It records the snapshots and then tries to figure out what was renamed implicitly, after the fact. One of the interesting features of this is that you can ask it to figure out all sorts of code movement as well. -If you pass `-C` to `git blame`, Git analyzes the file you’re annotating and tries to figure out where snippets of code within it originally came from if they were copied from elsewhere. +If you pass `-C` to `git blame`, Git analyzes the file you're annotating and tries to figure out where snippets of code within it originally came from if they were copied from elsewhere. For example, say you are refactoring a file named `GITServerHandler.m` into multiple files, one of which is `GITPackUpload.m`. By blaming `GITPackUpload.m` with the `-C` option, you can see where sections of the code originally came from: @@ -70,13 +70,13 @@ Git tells you the original commit where you wrote those lines, even if it was in ==== Binary Search Annotating a file helps if you know where the issue is to begin with. -If you don’t know what is breaking, and there have been dozens or hundreds of commits since the last state where you know the code worked, you’ll likely turn to `git bisect` for help. +If you don't know what is breaking, and there have been dozens or hundreds of commits since the last state where you know the code worked, you'll likely turn to `git bisect` for help. The `bisect` command does a binary search through your commit history to help you identify as quickly as possible which commit introduced an issue. -Let’s say you just pushed out a release of your code to a production environment, you’re getting bug reports about something that wasn’t happening in your development environment, and you can’t imagine why the code is doing that. -You go back to your code, and it turns out you can reproduce the issue, but you can’t figure out what is going wrong. +Let's say you just pushed out a release of your code to a production environment, you're getting bug reports about something that wasn't happening in your development environment, and you can't imagine why the code is doing that. +You go back to your code, and it turns out you can reproduce the issue, but you can't figure out what is going wrong. You can _bisect_ the code to find out. -First you run `git bisect start` to get things going, and then you use `git bisect bad` to tell the system that the current commit you’re on is broken. +First you run `git bisect start` to get things going, and then you use `git bisect bad` to tell the system that the current commit you're on is broken. Then, you must tell bisect when the last known good state was, using `git bisect good `: [source,console] @@ -85,33 +85,33 @@ $ git bisect start $ git bisect bad $ git bisect good v1.0 Bisecting: 6 revisions left to test after this -[ecb6e1bc347ccecc5f9350d878ce677feb13d3b2] error handling on repo +[ecb6e1bc347ccecc5f9350d878ce677feb13d3b2] Error handling on repo ---- Git figured out that about 12 commits came between the commit you marked as the last good commit (v1.0) and the current bad version, and it checked out the middle one for you. At this point, you can run your test to see if the issue exists as of this commit. -If it does, then it was introduced sometime before this middle commit; if it doesn’t, then the problem was introduced sometime after the middle commit. +If it does, then it was introduced sometime before this middle commit; if it doesn't, then the problem was introduced sometime after the middle commit. It turns out there is no issue here, and you tell Git that by typing `git bisect good` and continue your journey: [source,console] ---- $ git bisect good Bisecting: 3 revisions left to test after this -[b047b02ea83310a70fd603dc8cd7a6cd13d15c04] secure this thing +[b047b02ea83310a70fd603dc8cd7a6cd13d15c04] Secure this thing ---- -Now you’re on another commit, halfway between the one you just tested and your bad commit. +Now you're on another commit, halfway between the one you just tested and your bad commit. You run your test again and find that this commit is broken, so you tell Git that with `git bisect bad`: [source,console] ---- $ git bisect bad Bisecting: 1 revisions left to test after this -[f71ce38690acf49c1f3c9bea38e09d82a5ce6014] drop exceptions table +[f71ce38690acf49c1f3c9bea38e09d82a5ce6014] Drop exceptions table ---- This commit is fine, and now Git has all the information it needs to determine where the issue was introduced. -It tells you the SHA-1 of the first bad commit and show some of the commit information and which files were modified in that commit so you can figure out what happened that may have introduced this bug: +It tells you the SHA-1 of the first bad commit and shows some of the commit information and which files were modified in that commit so you can figure out what happened that may have introduced this bug: [source,console] ---- @@ -121,13 +121,13 @@ commit b047b02ea83310a70fd603dc8cd7a6cd13d15c04 Author: PJ Hyett Date: Tue Jan 27 14:48:32 2009 -0800 - secure this thing + Secure this thing :040000 040000 40ee3e7821b895e52c1695092db9bdc4c61d1730 f24d3c6ebcfc639b1a3814550e62d60b8e68a8e4 M config ---- -When you’re finished, you should run `git bisect reset` to reset your HEAD to where you were before you started, or you’ll end up in a weird state: +When you're finished, you should run `git bisect reset` to reset your HEAD to where you were before you started, or you'll end up in a weird state: [source,console] ---- diff --git a/book/07-git-tools/sections/interactive-staging.asc b/book/07-git-tools/sections/interactive-staging.asc index 094fdb116..1f7a5635d 100644 --- a/book/07-git-tools/sections/interactive-staging.asc +++ b/book/07-git-tools/sections/interactive-staging.asc @@ -1,9 +1,9 @@ [[_interactive_staging]] === Interactive Staging -In this section, you’ll look at a few interactive Git commands that can help you easily craft your commits to include only certain combinations and parts of files. -These tools are helpful if you modify a number of files and then decide that you want those changes to be in several focused commits rather than one big messy commit. -This way, you can make sure your commits are logically separate changesets and can be easily reviewed by the developers working with you. +In this section, you'll look at a few interactive Git commands that can help you craft your commits to include only certain combinations and parts of files. +These tools are helpful if you modify a number of files extensively, then decide that you want those changes to be partitioned into several focused commits rather than one big messy commit. +This way, you can make sure your commits are logically separate changesets and can be reviewed easily by the developers working with you. If you run `git add` with the `-i` or `--interactive` option, Git enters an interactive shell mode, displaying something like this: @@ -16,23 +16,23 @@ $ git add -i 3: unchanged +5/-1 lib/simplegit.rb *** Commands *** - 1: status 2: update 3: revert 4: add untracked - 5: patch 6: diff 7: quit 8: help + 1: [s]tatus 2: [u]pdate 3: [r]evert 4: [a]dd untracked + 5: [p]atch 6: [d]iff 7: [q]uit 8: [h]elp What now> ---- You can see that this command shows you a much different view of your staging area than you're probably used to -- basically, the same information you get with `git status` but a bit more succinct and informative. -It lists the changes you’ve staged on the left and unstaged changes on the right. +It lists the changes you've staged on the left and unstaged changes on the right. -After this comes a ``Commands'' section, which allows you to do a number of things like staging and unstaging files, staging parts of files, adding untracked files, and displaying diffs of what has been staged. +After this comes a "`Commands`" section, which allows you to do a number of things like staging and unstaging files, staging parts of files, adding untracked files, and displaying diffs of what has been staged. ==== Staging and Unstaging Files -If you type `2` or `u` at the `What now>` prompt, you're prompted for which files you want to stage: +If you type `u` or `2` (for update) at the `What now>` prompt, you're prompted for which files you want to stage: [source,console] ---- -What now> 2 +What now> u staged unstaged path 1: unchanged +0/-1 TODO 2: unchanged +1/-1 index.html @@ -61,9 +61,9 @@ Update>> updated 2 paths *** Commands *** - 1: status 2: update 3: revert 4: add untracked - 5: patch 6: diff 7: quit 8: help -What now> 1 + 1: [s]tatus 2: [u]pdate 3: [r]evert 4: [a]dd untracked + 5: [p]atch 6: [d]iff 7: [q]uit 8: [h]elp +What now> s staged unstaged path 1: +0/-1 nothing TODO 2: +1/-1 nothing index.html @@ -71,14 +71,14 @@ What now> 1 ---- Now you can see that the `TODO` and `index.html` files are staged and the `simplegit.rb` file is still unstaged. -If you want to unstage the `TODO` file at this point, you use the `3` or `r` (for revert) option: +If you want to unstage the `TODO` file at this point, you use the `r` or `3` (for revert) option: [source,console] ---- *** Commands *** - 1: status 2: update 3: revert 4: add untracked - 5: patch 6: diff 7: quit 8: help -What now> 3 + 1: [s]tatus 2: [u]pdate 3: [r]evert 4: [a]dd untracked + 5: [p]atch 6: [d]iff 7: [q]uit 8: [h]elp +What now> r staged unstaged path 1: +0/-1 nothing TODO 2: +1/-1 nothing index.html @@ -92,30 +92,30 @@ Revert>> [enter] reverted one path ---- -Looking at your Git status again, you can see that you’ve unstaged the `TODO` file: +Looking at your Git status again, you can see that you've unstaged the `TODO` file: [source,console] ---- *** Commands *** - 1: status 2: update 3: revert 4: add untracked - 5: patch 6: diff 7: quit 8: help -What now> 1 + 1: [s]tatus 2: [u]pdate 3: [r]evert 4: [a]dd untracked + 5: [p]atch 6: [d]iff 7: [q]uit 8: [h]elp +What now> s staged unstaged path 1: unchanged +0/-1 TODO 2: +1/-1 nothing index.html 3: unchanged +5/-1 lib/simplegit.rb ---- -To see the diff of what you’ve staged, you can use the `6` or `d` (for diff) command. +To see the diff of what you've staged, you can use the `d` or `6` (for diff) command. It shows you a list of your staged files, and you can select the ones for which you would like to see the staged diff. This is much like specifying `git diff --cached` on the command line: [source,console] ---- *** Commands *** - 1: status 2: update 3: revert 4: add untracked - 5: patch 6: diff 7: quit 8: help -What now> 6 + 1: [s]tatus 2: [u]pdate 3: [r]evert 4: [a]dd untracked + 5: [p]atch 6: [d]iff 7: [q]uit 8: [h]elp +What now> d staged unstaged path 1: +1/-1 nothing index.html Review diff>> 1 @@ -137,9 +137,9 @@ With these basic commands, you can use the interactive add mode to deal with you ==== Staging Patches -It’s also possible for Git to stage certain _parts_ of files and not the rest. +It's also possible for Git to stage certain _parts_ of files and not the rest. For example, if you make two changes to your `simplegit.rb` file and want to stage one of them and not the other, doing so is very easy in Git. -From the same interactive prompt explained in the previous section, type `5` or `p` (for patch). +From the same interactive prompt explained in the previous section, type `p` or `5` (for patch). Git will ask you which files you would like to partially stage; then, for each section of the selected files, it will display hunks of the file diff and ask if you would like to stage them, one by one: [source,console] @@ -181,7 +181,7 @@ e - manually edit the current hunk ? - print help ---- -Generally, you’ll type `y` or `n` if you want to stage each hunk, but staging all of them in certain files or skipping a hunk decision until later can be helpful too. +Generally, you'll type `y` or `n` if you want to stage each hunk, but staging all of them in certain files or skipping a hunk decision until later can be helpful too. If you stage one part of the file and leave another part unstaged, your status output will look like this: [source,console] @@ -195,10 +195,10 @@ What now> 1 The status of the `simplegit.rb` file is interesting. It shows you that a couple of lines are staged and a couple are unstaged. -You’ve partially staged this file. +You've partially staged this file. At this point, you can exit the interactive adding script and run `git commit` to commit the partially staged files. -You also don’t need to be in interactive add mode to do the partial-file staging -- you can start the same script by using `git add -p` or `git add --patch` on the command line. +You also don't need to be in interactive add mode to do the partial-file staging -- you can start the same script by using `git add -p` or `git add --patch` on the command line. Furthermore, you can use patch mode for partially resetting files with the `git reset --patch` command, for checking out parts of files with the `git checkout --patch` command and for stashing parts of files with the `git stash save --patch` command. We'll go into more details on each of these as we get to more advanced usages of these commands. diff --git a/book/07-git-tools/sections/replace.asc b/book/07-git-tools/sections/replace.asc index 95cf842a2..fd7c8ecd4 100644 --- a/book/07-git-tools/sections/replace.asc +++ b/book/07-git-tools/sections/replace.asc @@ -18,33 +18,35 @@ We'll use a simple repository with five simple commits: [source,console] ---- $ git log --oneline -ef989d8 fifth commit -c6e1e95 fourth commit -9c68fdc third commit -945704c second commit -c1822cf first commit +ef989d8 Fifth commit +c6e1e95 Fourth commit +9c68fdc Third commit +945704c Second commit +c1822cf First commit ---- We want to break this up into two lines of history. One line goes from commit one to commit four - that will be the historical one. The second line will just be commits four and five - that will be the recent history. -image::images/replace1.png[] +.Example Git history +image::images/replace1.png[Example Git history] -Well, creating the historical history is easy, we can just put a branch in the history and then push that branch to the master branch of a new remote repository. +Well, creating the historical history is easy, we can just put a branch in the history and then push that branch to the `master` branch of a new remote repository. [source,console] ---- $ git branch history c6e1e95 $ git log --oneline --decorate -ef989d8 (HEAD, master) fifth commit -c6e1e95 (history) fourth commit -9c68fdc third commit -945704c second commit -c1822cf first commit +ef989d8 (HEAD, master) Fifth commit +c6e1e95 (history) Fourth commit +9c68fdc Third commit +945704c Second commit +c1822cf First commit ---- -image::images/replace2.png[] +.Creating a new `history` branch +image::images/replace2.png[Creating a new `history` branch] Now we can push the new `history` branch to the `master` branch of our new repository: @@ -69,11 +71,11 @@ We need an overlap so we can replace a commit in one with an equivalent commit i [source,console] ---- $ git log --oneline --decorate -ef989d8 (HEAD, master) fifth commit -c6e1e95 (history) fourth commit -9c68fdc third commit -945704c second commit -c1822cf first commit +ef989d8 (HEAD, master) Fifth commit +c6e1e95 (history) Fourth commit +9c68fdc Third commit +945704c Second commit +c1822cf First commit ---- It's useful in this case to create a base commit that has instructions on how to expand the history, so other developers know what to do if they hit the first commit in the truncated history and need more. @@ -85,7 +87,7 @@ We can create our base commit using the `commit-tree` command, which just takes [source,console] ---- -$ echo 'get history from blah blah blah' | git commit-tree 9c68fdc^{tree} +$ echo 'Get history from blah blah blah' | git commit-tree 9c68fdc^{tree} 622e88e9cbfbacfb75b5279245b9fb38dfea10cf ---- @@ -94,10 +96,11 @@ $ echo 'get history from blah blah blah' | git commit-tree 9c68fdc^{tree} The `commit-tree` command is one of a set of commands that are commonly referred to as 'plumbing' commands. These are commands that are not generally meant to be used directly, but instead are used by *other* Git commands to do smaller jobs. On occasions when we're doing weirder things like this, they allow us to do really low-level things but are not meant for daily use. -You can read more about plumbing commands in <> +You can read more about plumbing commands in <>. ===== -image::images/replace3.png[] +.Creating a base commit using `commit-tree` +image::images/replace3.png[Creating a base commit using `commit-tree`] OK, so now that we have a base commit, we can rebase the rest of our history on top of that with `git rebase --onto`. The `--onto` argument will be the SHA-1 we just got back from `commit-tree` and the rebase point will be the third commit (the parent of the first commit we want to keep, `9c68fdc`): @@ -110,7 +113,8 @@ Applying: fourth commit Applying: fifth commit ---- -image::images/replace4.png[] +.Rebasing the history on top of the base commit +image::images/replace4.png[Rebasing the history on top of the base commit] OK, so now we've re-written our recent history on top of a throw away base commit that now has instructions in it on how to reconstitute the entire history if we wanted to. We can push that new history to a new project and now when people clone that repository, they will only see the most recent two commits and then a base commit with instructions. @@ -124,9 +128,9 @@ $ git clone https://github.com/schacon/project $ cd project $ git log --oneline master -e146b5f fifth commit -81a708d fourth commit -622e88e get history from blah blah blah +e146b5f Fifth commit +81a708d Fourth commit +622e88e Get history from blah blah blah $ git remote add project-history https://github.com/schacon/project-history $ git fetch project-history @@ -139,19 +143,19 @@ Now the collaborator would have their recent commits in the `master` branch and [source,console] ---- $ git log --oneline master -e146b5f fifth commit -81a708d fourth commit -622e88e get history from blah blah blah +e146b5f Fifth commit +81a708d Fourth commit +622e88e Get history from blah blah blah $ git log --oneline project-history/master -c6e1e95 fourth commit -9c68fdc third commit -945704c second commit -c1822cf first commit +c6e1e95 Fourth commit +9c68fdc Third commit +945704c Second commit +c1822cf First commit ---- To combine them, you can simply call `git replace` with the commit you want to replace and then the commit you want to replace it with. -So we want to replace the "fourth" commit in the master branch with the "fourth" commit in the `project-history/master` branch: +So we want to replace the "fourth" commit in the `master` branch with the "fourth" commit in the `project-history/master` branch: [source,console] ---- @@ -163,16 +167,17 @@ Now, if you look at the history of the `master` branch, it appears to look like [source,console] ---- $ git log --oneline master -e146b5f fifth commit -81a708d fourth commit -9c68fdc third commit -945704c second commit -c1822cf first commit +e146b5f Fifth commit +81a708d Fourth commit +9c68fdc Third commit +945704c Second commit +c1822cf First commit ---- Cool, right? Without having to change all the SHA-1s upstream, we were able to replace one commit in our history with an entirely different commit and all the normal tools (`bisect`, `blame`, etc) will work how we would expect them to. -image::images/replace5.png[] +.Combining the commits with `git replace` +image::images/replace5.png[Combining the commits with `git replace`] Interestingly, it still shows `81a708d` as the SHA-1, even though it's actually using the `c6e1e95` commit data that we replaced it with. Even if you run a command like `cat-file`, it will show you the replaced data: diff --git a/book/07-git-tools/sections/rerere.asc b/book/07-git-tools/sections/rerere.asc index a030104c3..dd3e60ea4 100644 --- a/book/07-git-tools/sections/rerere.asc +++ b/book/07-git-tools/sections/rerere.asc @@ -2,7 +2,7 @@ === Rerere The `git rerere` functionality is a bit of a hidden feature. -The name stands for ``reuse recorded resolution'' and, as the name implies, it allows you to ask Git to remember how you've resolved a hunk conflict so that the next time it sees the same conflict, Git can resolve it for you automatically. +The name stands for "`reuse recorded resolution`" and, as the name implies, it allows you to ask Git to remember how you've resolved a hunk conflict so that the next time it sees the same conflict, Git can resolve it for you automatically. There are a number of scenarios in which this functionality might be really handy. One of the examples that is mentioned in the documentation is when you want to make sure a long-lived topic branch will ultimately merge cleanly, but you don't want to have a bunch of intermediate merge commits cluttering up your commit history. @@ -36,9 +36,10 @@ def hello end ---- -In one branch we change the word ``hello'' to ``hola'', then in another branch we change the ``world'' to ``mundo'', just like before. +In one branch we change the word "`hello`" to "`hola`", then in another branch we change the "`world`" to "`mundo`", just like before. -image::images/rerere1.png[] +.Two branches changing the same part of the same file differently +image::images/rerere1.png[Two branches changing the same part of the same file differently] When we merge the two branches together, we'll get a merge conflict: @@ -129,7 +130,7 @@ $ git rerere diff end ---- -So that basically says, when Git sees a hunk conflict in a `hello.rb` file that has ``hello mundo'' on one side and ``hola world'' on the other, it will resolve it to ``hola mundo''. +So that basically says, when Git sees a hunk conflict in a `hello.rb` file that has "`hello mundo`" on one side and "`hola world`" on the other, it will resolve it to "`hola mundo`". Now we can mark it as resolved and commit it: @@ -143,9 +144,10 @@ Recorded resolution for 'hello.rb'. You can see that it "Recorded resolution for FILE". -image::images/rerere2.png[] +.Recorded resolution for FILE +image::images/rerere2.png[Recorded resolution for FILE] -Now, let's undo that merge and then rebase it on top of our master branch instead. +Now, let's undo that merge and then rebase it on top of our `master` branch instead. We can move our branch back by using `git reset` as we saw in <>. [source,console] @@ -205,7 +207,8 @@ index a440db6,54336ba..0000000 end ---- -image::images/rerere3.png[] +.Automatically resolved merge conflict using previous resolution +image::images/rerere3.png[Automatically resolved merge conflict using previous resolution] You can also recreate the conflicted file state with `git checkout`: @@ -249,4 +252,4 @@ $ git rebase --continue Applying: i18n one word ---- -So, if you do a lot of re-merges, or want to keep a topic branch up to date with your master branch without a ton of merges, or you rebase often, you can turn on `rerere` to help your life out a bit. +So, if you do a lot of re-merges, or want to keep a topic branch up to date with your `master` branch without a ton of merges, or you rebase often, you can turn on `rerere` to help your life out a bit. diff --git a/book/07-git-tools/sections/reset.asc b/book/07-git-tools/sections/reset.asc index 0c4fb87d4..f5b953417 100644 --- a/book/07-git-tools/sections/reset.asc +++ b/book/07-git-tools/sections/reset.asc @@ -9,8 +9,8 @@ For this, we recommend a simple metaphor. ==== The Three Trees An easier way to think about `reset` and `checkout` is through the mental frame of Git being a content manager of three different trees. -By ``tree'' here, we really mean ``collection of files'', not specifically the data structure. -(There are a few cases where the index doesn't exactly act like a tree, but for our purposes it is easier to think about it this way for now.) +By "`tree`" here, we really mean "`collection of files`", not specifically the data structure. +There are a few cases where the index doesn't exactly act like a tree, but for our purposes it is easier to think about it this way for now. Git as a system manages and manipulates three trees in its normal operation: @@ -46,13 +46,13 @@ $ git ls-tree -r HEAD 040000 tree 99f1a6d12cb4b6f19... lib ---- -The Git `cat-file` and `ls-tree` commands are ``plumbing'' commands that are used for lower level things and not really used in day-to-day work, but they help us see what's going on here. +The Git `cat-file` and `ls-tree` commands are "`plumbing`" commands that are used for lower level things and not really used in day-to-day work, but they help us see what's going on here. [[_the_index]] ===== The Index -The Index is your *proposed next commit*. -We've also been referring to this concept as Git's ``Staging Area'' as this is what Git looks at when you run `git commit`. +The _index_ is your *proposed next commit*. +We've also been referring to this concept as Git's "`Staging Area`" as this is what Git looks at when you run `git commit`. Git populates this index with a list of all the file contents that were last checked out into your working directory and what they looked like when they were originally checked out. You then replace some of those files with new versions of them, and `git commit` converts that into the tree for a new commit. @@ -71,10 +71,10 @@ The index is not technically a tree structure -- it's actually implemented as a ===== The Working Directory -Finally, you have your working directory. +Finally, you have your _working directory_ (also commonly referred to as the "`working tree`"). The other two trees store their content in an efficient but inconvenient manner, inside the `.git` folder. -The Working Directory unpacks them into actual files, which makes it much easier for you to edit them. -Think of the Working Directory as a *sandbox*, where you can try changes out before committing them to your staging area (index) and then to history. +The working directory unpacks them into actual files, which makes it much easier for you to edit them. +Think of the working directory as a *sandbox*, where you can try changes out before committing them to your staging area (index) and then to history. [source,console] ---- @@ -90,48 +90,55 @@ $ tree ==== The Workflow -Git's main purpose is to record snapshots of your project in successively better states, by manipulating these three trees. +Git's typical workflow is to record snapshots of your project in successively better states, by manipulating these three trees. -image::images/reset-workflow.png[] +.Git's typical workflow +image::images/reset-workflow.png[Git's typical workflow] Let's visualize this process: say you go into a new directory with a single file in it. We'll call this *v1* of the file, and we'll indicate it in blue. -Now we run `git init`, which will create a Git repository with a HEAD reference which points to an unborn branch (`master` doesn't exist yet). +Now we run `git init`, which will create a Git repository with a HEAD reference which points to the unborn `master` branch. -image::images/reset-ex1.png[] +.Newly-initialized Git repository with unstaged file in the working directory +image::images/reset-ex1.png[Newly-initialized Git repository with unstaged file in the working directory] -At this point, only the Working Directory tree has any content. +At this point, only the working directory tree has any content. -Now we want to commit this file, so we use `git add` to take content in the Working Directory and copy it to the Index. +Now we want to commit this file, so we use `git add` to take content in the working directory and copy it to the index. -image::images/reset-ex2.png[] +.File is copied to index on `git add` +image::images/reset-ex2.png[File is copied to index on `git add`] -Then we run `git commit`, which takes the contents of the Index and saves it as a permanent snapshot, creates a commit object which points to that snapshot, and updates `master` to point to that commit. +Then we run `git commit`, which takes the contents of the index and saves it as a permanent snapshot, creates a commit object which points to that snapshot, and updates `master` to point to that commit. -image::images/reset-ex3.png[] +.The `git commit` step +image::images/reset-ex3.png[The `git commit` step] If we run `git status`, we'll see no changes, because all three trees are the same. Now we want to make a change to that file and commit it. -We'll go through the same process; first we change the file in our working directory. +We'll go through the same process; first, we change the file in our working directory. Let's call this *v2* of the file, and indicate it in red. -image::images/reset-ex4.png[] +.Git repository with changed file in the working directory +image::images/reset-ex4.png[Git repository with changed file in the working directory] -If we run `git status` right now, we'll see the file in red as ``Changes not staged for commit,'' because that entry differs between the Index and the Working Directory. -Next we run `git add` on it to stage it into our Index. +If we run `git status` right now, we'll see the file in red as "`Changes not staged for commit`", because that entry differs between the index and the working directory. +Next we run `git add` on it to stage it into our index. -image::images/reset-ex5.png[] +.Staging change to index +image::images/reset-ex5.png[Staging change to index] -At this point, if we run `git status`, we will see the file in green under ``Changes to be committed'' because the Index and HEAD differ -- that is, our proposed next commit is now different from our last commit. +At this point, if we run `git status`, we will see the file in green under "`Changes to be committed`" because the index and HEAD differ -- that is, our proposed next commit is now different from our last commit. Finally, we run `git commit` to finalize the commit. -image::images/reset-ex6.png[] +.The `git commit` step with changed file +image::images/reset-ex6.png[The `git commit` step with changed file] Now `git status` will give us no output, because all three trees are the same again. Switching branches or cloning goes through a similar process. -When you checkout a branch, it changes *HEAD* to point to the new branch ref, populates your *Index* with the snapshot of that commit, then copies the contents of the *Index* into your *Working Directory*. +When you checkout a branch, it changes *HEAD* to point to the new branch ref, populates your *index* with the snapshot of that commit, then copies the contents of the *index* into your *working directory*. ==== The Role of Reset @@ -140,7 +147,8 @@ The `reset` command makes more sense when viewed in this context. For the purposes of these examples, let's say that we've modified `file.txt` again and committed it a third time. So now our history looks like this: -image::images/reset-start.png[] +.Git repository with three commits +image::images/reset-start.png[Git repository with three commits] Let's now walk through exactly what `reset` does when you call it. It directly manipulates these three trees in a simple and predictable way. @@ -152,23 +160,25 @@ The first thing `reset` will do is move what HEAD points to. This isn't the same as changing HEAD itself (which is what `checkout` does); `reset` moves the branch that HEAD is pointing to. This means if HEAD is set to the `master` branch (i.e. you're currently on the `master` branch), running `git reset 9e5e6a4` will start by making `master` point to `9e5e6a4`. -image::images/reset-soft.png[] +.Soft reset +image::images/reset-soft.png[Soft reset] No matter what form of `reset` with a commit you invoke, this is the first thing it will always try to do. With `reset --soft`, it will simply stop there. Now take a second to look at that diagram and realize what happened: it essentially undid the last `git commit` command. When you run `git commit`, Git creates a new commit and moves the branch that HEAD points to up to it. -When you `reset` back to `HEAD~` (the parent of HEAD), you are moving the branch back to where it was, without changing the Index or Working Directory. -You could now update the Index and run `git commit` again to accomplish what `git commit --amend` would have done (see <<_git_amend>>). +When you `reset` back to `HEAD~` (the parent of HEAD), you are moving the branch back to where it was, without changing the index or working directory. +You could now update the index and run `git commit` again to accomplish what `git commit --amend` would have done (see <<_git_amend>>). -===== Step 2: Updating the Index (--mixed) +===== Step 2: Updating the Index (`--mixed`) -Note that if you run `git status` now you'll see in green the difference between the Index and what the new HEAD is. +Note that if you run `git status` now you'll see in green the difference between the index and what the new HEAD is. -The next thing `reset` will do is to update the Index with the contents of whatever snapshot HEAD now points to. +The next thing `reset` will do is to update the index with the contents of whatever snapshot HEAD now points to. -image::images/reset-mixed.png[] +.Mixed reset +image::images/reset-mixed.png[Mixed reset] If you specify the `--mixed` option, `reset` will stop at this point. This is also the default, so if you specify no option at all (just `git reset HEAD~` in this case), this is where the command will stop. @@ -176,60 +186,63 @@ This is also the default, so if you specify no option at all (just `git reset HE Now take another second to look at that diagram and realize what happened: it still undid your last `commit`, but also _unstaged_ everything. You rolled back to before you ran all your `git add` and `git commit` commands. -===== Step 3: Updating the Working Directory (--hard) +===== Step 3: Updating the Working Directory (`--hard`) -The third thing that `reset` will do is to make the Working Directory look like the Index. +The third thing that `reset` will do is to make the working directory look like the index. If you use the `--hard` option, it will continue to this stage. -image::images/reset-hard.png[] +.Hard reset +image::images/reset-hard.png[Hard reset] So let's think about what just happened. You undid your last commit, the `git add` and `git commit` commands, *and* all the work you did in your working directory. It's important to note that this flag (`--hard`) is the only way to make the `reset` command dangerous, and one of the very few cases where Git will actually destroy data. -Any other invocation of `reset` can be pretty easily undone, but the `--hard` option cannot, since it forcibly overwrites files in the Working Directory. +Any other invocation of `reset` can be pretty easily undone, but the `--hard` option cannot, since it forcibly overwrites files in the working directory. In this particular case, we still have the *v3* version of our file in a commit in our Git DB, and we could get it back by looking at our `reflog`, but if we had not committed it, Git still would have overwritten the file and it would be unrecoverable. ===== Recap The `reset` command overwrites these three trees in a specific order, stopping when you tell it to: -1. Move the branch HEAD points to _(stop here if `--soft`)_ -2. Make the Index look like HEAD _(stop here unless `--hard`)_ -3. Make the Working Directory look like the Index +1. Move the branch HEAD points to _(stop here if `--soft`)_. +2. Make the index look like HEAD _(stop here unless `--hard`)_. +3. Make the working directory look like the index. ==== Reset With a Path That covers the behavior of `reset` in its basic form, but you can also provide it with a path to act upon. If you specify a path, `reset` will skip step 1, and limit the remainder of its actions to a specific file or set of files. This actually sort of makes sense -- HEAD is just a pointer, and you can't point to part of one commit and part of another. -But the Index and Working directory _can_ be partially updated, so reset proceeds with steps 2 and 3. +But the index and working directory _can_ be partially updated, so reset proceeds with steps 2 and 3. So, assume we run `git reset file.txt`. This form (since you did not specify a commit SHA-1 or branch, and you didn't specify `--soft` or `--hard`) is shorthand for `git reset --mixed HEAD file.txt`, which will: -1. Move the branch HEAD points to _(skipped)_ -2. Make the Index look like HEAD _(stop here)_ +1. Move the branch HEAD points to _(skipped)_. +2. Make the index look like HEAD _(stop here)_. -So it essentially just copies `file.txt` from HEAD to the Index. +So it essentially just copies `file.txt` from HEAD to the index. -image::images/reset-path1.png[] +.Mixed reset with a path +image::images/reset-path1.png[Mixed reset with a path] This has the practical effect of _unstaging_ the file. If we look at the diagram for that command and think about what `git add` does, they are exact opposites. -image::images/reset-path2.png[] +.Staging file to index +image::images/reset-path2.png[Staging file to index] -This is why the output of the `git status` command suggests that you run this to unstage a file. -(See <> for more on this.) +This is why the output of the `git status` command suggests that you run this to unstage a file (see <> for more on this). -We could just as easily not let Git assume we meant ``pull the data from HEAD'' by specifying a specific commit to pull that file version from. +We could just as easily not let Git assume we meant "`pull the data from HEAD`" by specifying a specific commit to pull that file version from. We would just run something like `git reset eb43bf file.txt`. -image::images/reset-path3.png[] +.Soft reset with a path to a specific commit +image::images/reset-path3.png[Soft reset with a path to a specific commit] -This effectively does the same thing as if we had reverted the content of the file to *v1* in the Working Directory, ran `git add` on it, then reverted it back to *v3* again (without actually going through all those steps). -If we run `git commit` now, it will record a change that reverts that file back to *v1*, even though we never actually had it in our Working Directory again. +This effectively does the same thing as if we had reverted the content of the file to *v1* in the working directory, ran `git add` on it, then reverted it back to *v3* again (without actually going through all those steps). +If we run `git commit` now, it will record a change that reverts that file back to *v1*, even though we never actually had it in our working directory again. It's also interesting to note that like `git add`, the `reset` command will accept a `--patch` option to unstage content on a hunk-by-hunk basis. So you can selectively unstage or revert content. @@ -238,25 +251,28 @@ So you can selectively unstage or revert content. Let's look at how to do something interesting with this newfound power -- squashing commits. -Say you have a series of commits with messages like ``oops.'', ``WIP'' and ``forgot this file''. +Say you have a series of commits with messages like "`oops.`", "`WIP`" and "`forgot this file`". You can use `reset` to quickly and easily squash them into a single commit that makes you look really smart. -(<<_squashing>> shows another way to do this, but in this example it's simpler to use `reset`.) +<<_squashing>> shows another way to do this, but in this example it's simpler to use `reset`. Let's say you have a project where the first commit has one file, the second commit added a new file and changed the first, and the third commit changed the first file again. The second commit was a work in progress and you want to squash it down. -image::images/reset-squash-r1.png[] +.Git repository +image::images/reset-squash-r1.png[Git repository] You can run `git reset --soft HEAD~2` to move the HEAD branch back to an older commit (the most recent commit you want to keep): -image::images/reset-squash-r2.png[] +.Moving HEAD with soft reset +image::images/reset-squash-r2.png[Moving HEAD with soft reset] And then simply run `git commit` again: -image::images/reset-squash-r3.png[] +.Git repository with squashed commit +image::images/reset-squash-r3.png[Git repository with squashed commit] -Now you can see that your reachable history, the history you would push, now looks like you had one commit with `file-a.txt` v1, then a second that both modified `file-a.txt` to v3 and added `file-b.txt`. -The commit with the v2 version of the file is no longer in the history. +Now you can see that your reachable history, the history you would push, now looks like you had one commit with `file-a.txt` *v1*, then a second that both modified `file-a.txt` to *v3* and added `file-b.txt`. +The commit with the *v2* version of the file is no longer in the history. ==== Check It Out @@ -268,7 +284,7 @@ Like `reset`, `checkout` manipulates the three trees, and it is a bit different Running `git checkout [branch]` is pretty similar to running `git reset --hard [branch]` in that it updates all three trees for you to look like `[branch]`, but there are two important differences. First, unlike `reset --hard`, `checkout` is working-directory safe; it will check to make sure it's not blowing away files that have changes to them. -Actually, it's a bit smarter than that -- it tries to do a trivial merge in the Working Directory, so all of the files you _haven't_ changed will be updated. +Actually, it's a bit smarter than that -- it tries to do a trivial merge in the working directory, so all of the files you _haven't_ changed will be updated. `reset --hard`, on the other hand, will simply replace everything across the board without checking. The second important difference is how `checkout` updates HEAD. @@ -282,7 +298,8 @@ HEAD will now point to `master`. So, in both cases we're moving HEAD to point to commit A, but _how_ we do so is very different. `reset` will move the branch HEAD points to, `checkout` moves HEAD itself. -image::images/reset-checkout.png[] +.`git checkout` and `git reset` +image::images/reset-checkout.png[`git checkout` and `git reset`] ===== With Paths @@ -297,7 +314,7 @@ Also, like `git reset` and `git add`, `checkout` will accept a `--patch` option Hopefully now you understand and feel more comfortable with the `reset` command, but are probably still a little confused about how exactly it differs from `checkout` and could not possibly remember all the rules of the different invocations. Here's a cheat-sheet for which commands affect which trees. -The ``HEAD'' column reads ``REF'' if that command moves the reference (branch) that HEAD points to, and ``HEAD'' if it moves HEAD itself. +The "`HEAD`" column reads "`REF`" if that command moves the reference (branch) that HEAD points to, and "`HEAD`" if it moves HEAD itself. Pay especial attention to the 'WD Safe?' column -- if it says *NO*, take a second to think before running that command. [options="header", cols="3,1,1,1,1"] diff --git a/book/07-git-tools/sections/revision-selection.asc b/book/07-git-tools/sections/revision-selection.asc index 7a9b48398..95e8e8305 100644 --- a/book/07-git-tools/sections/revision-selection.asc +++ b/book/07-git-tools/sections/revision-selection.asc @@ -1,8 +1,8 @@ [[_revision_selection]] === Revision Selection -Git allows you to refer to a set of commits or a range of commits in several ways. -They aren’t necessarily obvious but are helpful to know. +Git allows you to refer to a single commit, set of commits, or range of commits in a number of ways. +They aren't necessarily obvious but are helpful to know. ==== Single Revisions @@ -13,7 +13,7 @@ This section outlines the various ways you can refer to any commit. Git is smart enough to figure out what commit you're referring to if you provide the first few characters of the SHA-1 hash, as long as that partial hash is at least four characters long and unambiguous; that is, no other object in the object database can have a hash that begins with the same prefix. -For example, to examine a specific commit where you know you added certain functionality, you might first run `git log` command to locate the commit: +For example, to examine a specific commit where you know you added certain functionality, you might first run the `git log` command to locate the commit: [source,console] ---- @@ -22,7 +22,7 @@ commit 734713bc047d87bf7eac9674765ae793478c50d3 Author: Scott Chacon Date: Fri Jan 2 18:32:33 2009 -0800 - fixed refs handling, added gc auto, updated tests + Fix refs handling, add gc auto, update tests commit d921970aadf03b3cf0e71becdaab3147ba71cdef Merge: 1c002dd... 35cfb2b... @@ -35,7 +35,7 @@ commit 1c002dd4b536e7479fe34593e72e6c6c1819e53b Author: Scott Chacon Date: Thu Dec 11 14:58:32 2008 -0800 - added some blame and merge stuff + Add some blame and merge stuff ---- In this case, say you're interested in the commit whose hash begins with `1c002dd...`. @@ -54,13 +54,13 @@ If you pass `--abbrev-commit` to the `git log` command, the output will use shor [source,console] ---- $ git log --abbrev-commit --pretty=oneline -ca82a6d changed the version number -085bb3b removed unnecessary test code -a11bef0 first commit +ca82a6d Change the version number +085bb3b Remove unnecessary test code +a11bef0 Initial commit ---- Generally, eight to ten characters are more than enough to be unique within a project. -For example, as of October 2017, the Linux kernel (which is a fairly sizable project) has over 700,000 commits and almost six million objects, with no two objects whose SHA-1s are identical in the first 11 characters. +For example, as of February 2019, the Linux kernel (which is a fairly sizable project) has over 875,000 commits and almost seven million objects in its object database, with no two objects whose SHA-1s are identical in the first 12 characters. [NOTE] .A SHORT NOTE ABOUT SHA-1 @@ -70,20 +70,20 @@ A lot of people become concerned at some point that they will, by random happens What then? If you do happen to commit an object that hashes to the same SHA-1 value as a previous _different_ object in your repository, Git will see the previous object already in your Git database, assume it was already written and simply reuse it. -If you try to check out that object again at some point, you’ll always get the data of the first object. +If you try to check out that object again at some point, you'll always get the data of the first object. However, you should be aware of how ridiculously unlikely this scenario is. The SHA-1 digest is 20 bytes or 160 bits. -The number of randomly hashed objects needed to ensure a 50% probability of a single collision is about 2^80^ -(the formula for determining collision probability is `p = (n(n-1)/2) * (1/2^160))`. 2^80^ -is 1.2 x 10^24^ -or 1 million billion billion. -That’s 1,200 times the number of grains of sand on the earth. +The number of randomly hashed objects needed to ensure a 50% probability of a single collision is about 2^80^ (the formula for determining collision probability is `p = (n(n-1)/2) * (1/2^160)`). +2^80^ is 1.2 x 10^24^ or 1 million billion billion. +That's 1,200 times the number of grains of sand on the earth. -Here’s an example to give you an idea of what it would take to get a SHA-1 collision. -If all 6.5 billion humans on Earth were programming, and every second, each one was producing code that was the equivalent of the entire Linux kernel history (3.6 million Git objects) and pushing it into one enormous Git repository, it would take roughly 2 years until that repository contained enough objects to have a 50% probability of a single SHA-1 object collision. -Thus, a SHA-1 collision is less likely than every member of your programming team being attacked and killed by wolves in unrelated incidents on the same night. +Here's an example to give you an idea of what it would take to get a SHA-1 collision. +If all 6.5 billion humans on Earth were programming, and every second, each one was producing code that was the equivalent of the entire Linux kernel history (6.5 million Git objects) and pushing it into one enormous Git repository, it would take roughly 2 years until that repository contained enough objects to have a 50% probability of a single SHA-1 object collision. +Thus, an organic SHA-1 collision is less likely than every member of your programming team being attacked and killed by wolves in unrelated incidents on the same night. +If you dedicate several thousands of dollars' worth of computing power to it, it is possible to synthesize two files with the same hash, as proven on https://shattered.io/[^] in February 2017. +Git is moving towards using SHA256 as the default hashing algorithm, which is much more resilient to collision attacks, and has code in place to help mitigate this attack (although it cannot completely eliminate it). ==== [[_branch_references]] @@ -99,8 +99,8 @@ $ git show topic1 ---- If you want to see which specific SHA-1 a branch points to, or if you want to see what any of these examples boils down to in terms of SHA-1s, you can use a Git plumbing tool called `rev-parse`. -You can see <> for more information about plumbing tools; basically, `rev-parse` exists for lower-level operations and isn’t designed to be used in day-to-day operations. -However, it can be helpful sometimes when you need to see what’s really going on. +You can see <> for more information about plumbing tools; basically, `rev-parse` exists for lower-level operations and isn't designed to be used in day-to-day operations. +However, it can be helpful sometimes when you need to see what's really going on. Here you can run `rev-parse` on your branch. [source,console] @@ -112,16 +112,16 @@ ca82a6dff817ec66f44342007202690a93763949 [[_git_reflog]] ==== RefLog Shortnames -One of the things Git does in the background while you’re working away is keep a ``reflog'' -- a log of where your HEAD and branch references have been for the last few months. +One of the things Git does in the background while you're working away is keep a "`reflog`" -- a log of where your HEAD and branch references have been for the last few months. You can see your reflog by using `git reflog`: [source,console] ---- $ git reflog -734713b HEAD@{0}: commit: fixed refs handling, added gc auto, updated -d921970 HEAD@{1}: merge phedders/rdocs: Merge made by the 'recursive' stategy. -1c002dd HEAD@{2}: commit: added some blame and merge stuff +734713b HEAD@{0}: commit: Fix refs handling, add gc auto, update tests +d921970 HEAD@{1}: merge phedders/rdocs: Merge made by the 'recursive' strategy. +1c002dd HEAD@{2}: commit: Add some blame and merge stuff 1c36188 HEAD@{3}: rebase -i (squash): updating HEAD 95df984 HEAD@{4}: commit: # This is a combination of two commits. 1c36188 HEAD@{5}: rebase -i (squash): updating HEAD @@ -138,15 +138,15 @@ $ git show HEAD@{5} ---- You can also use this syntax to see where a branch was some specific amount of time ago. -For instance, to see where your `master` branch was yesterday, you can type +For instance, to see where your `master` branch was yesterday, you can type: [source,console] ---- $ git show master@{yesterday} ---- -That would show you where tip of your `master` branch was yesterday. -This technique only works for data that’s still in your reflog, so you can’t use it to look for commits older than a few months. +That would show you where the tip of your `master` branch was yesterday. +This technique only works for data that's still in your reflog, so you can't use it to look for commits older than a few months. To see reflog information formatted like the `git log` output, you can run `git log -g`: @@ -155,11 +155,11 @@ To see reflog information formatted like the `git log` output, you can run `git $ git log -g master commit 734713bc047d87bf7eac9674765ae793478c50d3 Reflog: master@{0} (Scott Chacon ) -Reflog message: commit: fixed refs handling, added gc auto, updated +Reflog message: commit: Fix refs handling, add gc auto, update tests Author: Scott Chacon Date: Fri Jan 2 18:32:33 2009 -0800 - fixed refs handling, added gc auto, updated tests + Fix refs handling, add gc auto, update tests commit d921970aadf03b3cf0e71becdaab3147ba71cdef Reflog: master@{1} (Scott Chacon ) @@ -170,14 +170,30 @@ Date: Thu Dec 11 15:08:43 2008 -0800 Merge commit 'phedders/rdocs' ---- -It’s important to note that reflog information is strictly local -- it’s a log only of what _you've_ done in _your_ repository. -The references won’t be the same on someone else’s copy of the repository; also, right after you initially clone a repository, you'll have an empty reflog, as no activity has occurred yet in your repository. +It's important to note that reflog information is strictly local -- it's a log only of what _you've_ done in _your_ repository. +The references won't be the same on someone else's copy of the repository; also, right after you initially clone a repository, you'll have an empty reflog, as no activity has occurred yet in your repository. Running `git show HEAD@{2.months.ago}` will show you the matching commit only if you cloned the project at least two months ago -- if you cloned it any more recently than that, you'll see only your first local commit. [TIP] .Think of the reflog as Git's version of shell history ==== -If you have a UNIX or Linux background, you can think of the reflog as Git's version of shell history, which emphasizes that what's there is clearly relevant only for you and your ``session'', and has nothing to do with anyone else who might be working on the same machine. +If you have a UNIX or Linux background, you can think of the reflog as Git's version of shell history, which emphasizes that what's there is clearly relevant only for you and your "`session`", and has nothing to do with anyone else who might be working on the same machine. +==== + +[NOTE] +.Escaping braces in PowerShell +==== + +When using PowerShell, braces like `{` and `}` are special characters and must be escaped. +You can escape them with a backtick ` or put the commit reference in quotes: + +[source,console] +---- +$ git show HEAD@{0} # will NOT work +$ git show HEAD@`{0`} # OK +$ git show "HEAD@{0}" # OK +---- + ==== ==== Ancestry References @@ -189,17 +205,17 @@ Suppose you look at the history of your project: [source,console] ---- $ git log --pretty=format:'%h %s' --graph -* 734713b fixed refs handling, added gc auto, updated tests +* 734713b Fix refs handling, add gc auto, update tests * d921970 Merge commit 'phedders/rdocs' |\ | * 35cfb2b Some rdoc changes -* | 1c002dd added some blame and merge stuff +* | 1c002dd Add some blame and merge stuff |/ -* 1c36188 ignore *.gem -* 9b29157 add open3_detach to gemspec file list +* 1c36188 Ignore *.gem +* 9b29157 Add open3_detach to gemspec file list ---- -Then, you can see the previous commit by specifying `HEAD^`, which means ``the parent of HEAD'': +Then, you can see the previous commit by specifying `HEAD^`, which means "`the parent of HEAD`": [source,console] ---- @@ -216,7 +232,8 @@ Date: Thu Dec 11 15:08:43 2008 -0800 .Escaping the caret on Windows ==== -On Windows in `cmd.exe`, `^` is a special character and needs to be treated differently. You can either double it or put the commit reference in quotes: +On Windows in `cmd.exe`, `^` is a special character and needs to be treated differently. +You can either double it or put the commit reference in quotes: [source,console] ---- @@ -227,9 +244,8 @@ $ git show "HEAD^" # OK ==== -You can also specify a number after the `^` – for example, `d921970^2` means ``the second parent of d921970.'' -This syntax is useful only for merge commits, which have more than one parent. -The first parent is the branch you were on when you merged, and the second is the commit on the branch that you merged in: +You can also specify a number after the `^` to identify _which_ parent you want; for example, `d921970^2` means "`the second parent of d921970.`" +This syntax is useful only for merge commits, which have more than one parent -- the _first_ parent of a merge commit is from the branch you were on when you merged (frequently `master`), while the _second_ parent of a merge commit is from the branch that was merged (say, `topic`): [source,console] ---- @@ -238,7 +254,7 @@ commit 1c002dd4b536e7479fe34593e72e6c6c1819e53b Author: Scott Chacon Date: Thu Dec 11 14:58:32 2008 -0800 - added some blame and merge stuff + Add some blame and merge stuff $ git show d921970^2 commit 35cfb2b795a55793d7cc56a6cc2060b4bb732548 @@ -251,8 +267,8 @@ Date: Wed Dec 10 22:22:03 2008 +0000 The other main ancestry specification is the `~` (tilde). This also refers to the first parent, so `HEAD~` and `HEAD^` are equivalent. The difference becomes apparent when you specify a number. -`HEAD~2` means ``the first parent of the first parent,'' or ``the grandparent'' -- it traverses the first parents the number of times you specify. -For example, in the history listed earlier, `HEAD~3` would be +`HEAD~2` means "`the first parent of the first parent,`" or "`the grandparent`" -- it traverses the first parents the number of times you specify. +For example, in the history listed earlier, `HEAD~3` would be: [source,console] ---- @@ -261,19 +277,19 @@ commit 1c3618887afb5fbcbea25b7c013f4e2114448b8d Author: Tom Preston-Werner Date: Fri Nov 7 13:47:59 2008 -0500 - ignore *.gem + Ignore *.gem ---- -This can also be written `HEAD^^^`, which again is the first parent of the first parent of the first parent: +This can also be written `HEAD\~~~`, which again is the first parent of the first parent of the first parent: [source,console] ---- -$ git show HEAD^^^ +$ git show HEAD~~~ commit 1c3618887afb5fbcbea25b7c013f4e2114448b8d Author: Tom Preston-Werner Date: Fri Nov 7 13:47:59 2008 -0500 - ignore *.gem + Ignore *.gem ---- You can also combine these syntaxes -- you can get the second parent of the previous reference (assuming it was a merge commit) by using `HEAD~3^2`, and so on. @@ -281,21 +297,21 @@ You can also combine these syntaxes -- you can get the second parent of the prev [[_commit_ranges]] ==== Commit Ranges -Now that you can specify individual commits, let’s see how to specify ranges of commits. -This is particularly useful for managing your branches -- if you have a lot of branches, you can use range specifications to answer questions such as, ``What work is on this branch that I haven’t yet merged into my main branch?'' +Now that you can specify individual commits, let's see how to specify ranges of commits. +This is particularly useful for managing your branches -- if you have a lot of branches, you can use range specifications to answer questions such as, "`What work is on this branch that I haven't yet merged into my main branch?`" ===== Double Dot The most common range specification is the double-dot syntax. -This basically asks Git to resolve a range of commits that are reachable from one commit but aren’t reachable from another. +This basically asks Git to resolve a range of commits that are reachable from one commit but aren't reachable from another. For example, say you have a commit history that looks like <>. [[double_dot]] -.Example history for range selection. -image::images/double-dot.png[Example history for range selection.] +.Example history for range selection +image::images/double-dot.png[Example history for range selection] -Say you want to see what is in your `experiment` branch that hasn’t yet been merged into your `master` branch. -You can ask Git to show you a log of just those commits with `master..experiment` -- that means ``all commits reachable from experiment that aren’t reachable from master.'' +Say you want to see what is in your `experiment` branch that hasn't yet been merged into your `master` branch. +You can ask Git to show you a log of just those commits with `master..experiment` -- that means "`all commits reachable from `experiment` that aren't reachable from `master`.`" For the sake of brevity and clarity in these examples, the letters of the commit objects from the diagram are used in place of the actual log output in the order that they would display: [source,console] @@ -305,7 +321,7 @@ D C ---- -If, on the other hand, you want to see the opposite -- all commits in `master` that aren’t in `experiment` -- you can reverse the branch names. +If, on the other hand, you want to see the opposite -- all commits in `master` that aren't in `experiment` -- you can reverse the branch names. `experiment..master` shows you everything in `master` not reachable from `experiment`: [source,console] @@ -315,23 +331,23 @@ F E ---- -This is useful if you want to keep the `experiment` branch up to date and preview what you’re about to merge. -Another frequent use of this syntax is to see what you’re about to push to a remote: +This is useful if you want to keep the `experiment` branch up to date and preview what you're about to merge. +Another frequent use of this syntax is to see what you're about to push to a remote: [source,console] ---- $ git log origin/master..HEAD ---- -This command shows you any commits in your current branch that aren’t in the `master` branch on your `origin` remote. +This command shows you any commits in your current branch that aren't in the `master` branch on your `origin` remote. If you run a `git push` and your current branch is tracking `origin/master`, the commits listed by `git log origin/master..HEAD` are the commits that will be transferred to the server. You can also leave off one side of the syntax to have Git assume `HEAD`. For example, you can get the same results as in the previous example by typing `git log origin/master..` -- Git substitutes `HEAD` if one side is missing. ===== Multiple Points -The double-dot syntax is useful as a shorthand, but perhaps you want to specify more than two branches to indicate your revision, such as seeing what commits are in any of several branches that aren’t in the branch you’re currently on. -Git allows you to do this by using either the `^` character or `--not` before any reference from which you don’t want to see reachable commits. +The double-dot syntax is useful as a shorthand, but perhaps you want to specify more than two branches to indicate your revision, such as seeing what commits are in any of several branches that aren't in the branch you're currently on. +Git allows you to do this by using either the `^` character or `--not` before any reference from which you don't want to see reachable commits. Thus, the following three commands are equivalent: [source,console] diff --git a/book/07-git-tools/sections/rewriting-history.asc b/book/07-git-tools/sections/rewriting-history.asc index 6f6db755a..7fbb06d7f 100644 --- a/book/07-git-tools/sections/rewriting-history.asc +++ b/book/07-git-tools/sections/rewriting-history.asc @@ -3,12 +3,13 @@ Many times, when working with Git, you may want to revise your local commit history. One of the great things about Git is that it allows you to make decisions at the last possible moment. -You can decide what files go into which commits right before you commit with the staging area, you can decide that you didn’t mean to be working on something yet with `git stash`, and you can rewrite commits that already happened so they look like they happened in a different way. +You can decide what files go into which commits right before you commit with the staging area, you can decide that you didn't mean to be working on something yet with `git stash`, and you can rewrite commits that already happened so they look like they happened in a different way. This can involve changing the order of the commits, changing messages or modifying files in a commit, squashing together or splitting apart commits, or removing commits entirely -- all before you share your work with others. -In this section, you’ll see how to accomplish these tasks so that you can make your commit history look the way you want before you share it with others. +In this section, you'll see how to accomplish these tasks so that you can make your commit history look the way you want before you share it with others. [NOTE] +.Don't push your work until you're happy with it ==== One of the cardinal rules of Git is that, since so much work is local within your clone, you have a great deal of freedom to rewrite your history _locally_. However, once you push your work, it is a different story entirely, and you should consider pushed work as final unless you have good reason to change it. @@ -18,8 +19,8 @@ In short, you should avoid pushing your work until you're happy with it and read [[_git_amend]] ==== Changing the Last Commit -Changing your most recent commit is probably the most common rewriting of history that you’ll do. -You’ll often want to do two basic things to your last commit: simply change the commit message, or change the actual content of the commit by adding, removing and modifying files. +Changing your most recent commit is probably the most common rewriting of history that you'll do. +You'll often want to do two basic things to your last commit: simply change the commit message, or change the actual content of the commit by adding, removing and modifying files. If you simply want to modify your last commit message, that's easy: @@ -34,7 +35,7 @@ When you save and close the editor, the editor writes a new commit containing th If, on the other hand, you want to change the actual _content_ of your last commit, the process works basically the same way -- first make the changes you think you forgot, stage those changes, and the subsequent `git commit --amend` _replaces_ that last commit with your new, improved commit. You need to be careful with this technique because amending changes the SHA-1 of the commit. -It’s like a very small rebase -- don’t amend your last commit if you’ve already pushed it. +It's like a very small rebase -- don't amend your last commit if you've already pushed it. [TIP] .An amended commit may (or may not) need an amended commit message @@ -55,39 +56,47 @@ $ git commit --amend --no-edit ==== Changing Multiple Commit Messages To modify a commit that is farther back in your history, you must move to more complex tools. -Git doesn’t have a modify-history tool, but you can use the rebase tool to rebase a series of commits onto the HEAD they were originally based on instead of moving them to another one. +Git doesn't have a modify-history tool, but you can use the rebase tool to rebase a series of commits onto the HEAD that they were originally based on instead of moving them to another one. With the interactive rebase tool, you can then stop after each commit you want to modify and change the message, add files, or do whatever you wish. You can run rebase interactively by adding the `-i` option to `git rebase`. You must indicate how far back you want to rewrite commits by telling the command which commit to rebase onto. For example, if you want to change the last three commit messages, or any of the commit messages in that group, you supply as an argument to `git rebase -i` the parent of the last commit you want to edit, which is `HEAD~2^` or `HEAD~3`. -It may be easier to remember the `~3` because you’re trying to edit the last three commits, but keep in mind that you’re actually designating four commits ago, the parent of the last commit you want to edit: +It may be easier to remember the `~3` because you're trying to edit the last three commits, but keep in mind that you're actually designating four commits ago, the parent of the last commit you want to edit: [source,console] ---- $ git rebase -i HEAD~3 ---- -Remember again that this is a rebasing command – every commit included in the range `HEAD~3..HEAD` will be rewritten, whether you change the message or not. -Don’t include any commit you’ve already pushed to a central server – doing so will confuse other developers by providing an alternate version of the same change. +Remember again that this is a rebasing command -- every commit in the range `HEAD~3..HEAD` with a changed message _and all of its descendants_ will be rewritten. +Don't include any commit you've already pushed to a central server -- doing so will confuse other developers by providing an alternate version of the same change. Running this command gives you a list of commits in your text editor that looks something like this: [source,console] ---- -pick f7f3f6d changed my name a bit -pick 310154e updated README formatting and added blame -pick a5f4a0d added cat-file +pick f7f3f6d Change my name a bit +pick 310154e Update README formatting and add blame +pick a5f4a0d Add cat-file # Rebase 710f0f8..a5f4a0d onto 710f0f8 # # Commands: -# p, pick = use commit -# r, reword = use commit, but edit the commit message -# e, edit = use commit, but stop for amending -# s, squash = use commit, but meld into previous commit -# f, fixup = like "squash", but discard this commit's log message -# x, exec = run command (the rest of the line) using shell +# p, pick = use commit +# r, reword = use commit, but edit the commit message +# e, edit = use commit, but stop for amending +# s, squash = use commit, but meld into previous commit +# f, fixup = like "squash", but discard this commit's log message +# x, exec = run command (the rest of the line) using shell +# b, break = stop here (continue rebase later with 'git rebase --continue') +# d, drop = remove commit +# l, label