Skip to content

Commit e4be552

Browse files
committed
Leetle punctuations
1 parent 32afb1d commit e4be552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/03-git-branching/1-git-branching.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To really understand the way Git does branching, we need to take a step back and
1818
As you may remember from <<_getting_started>>, Git doesn't store data as a series of changesets or differences, but instead as a series of snapshots.
1919

2020
When you make a commit, Git stores a commit object that contains a pointer to the snapshot of the content you staged.
21-
This object also contains the authors name and email, the message that you typed, and pointers to the commit or commits that directly came bfore this commit (it's 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.
21+
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.
2222

2323
To visualize this, let's assume that you have a directory containing three files, and you stage them all and commit.
2424
Staging the files checksums each one (the SHA-1 hash we mentioned in <<_getting_started>>), stores that version of the file in the Git repository (Git refers to them as blobs), and adds that checksum to the staging area:
@@ -749,7 +749,7 @@ Branch sf set up to track remote branch serverfix from origin.
749749
Switched to a new branch 'sf'
750750
----
751751

752-
Now, your local branch sf will automatically push to and pull from `origin/serverfix`.
752+
Now, your local branch `sf` will automatically push to and pull from `origin/serverfix`.
753753

754754
If you already have a local branch and want to set it to a remote branch you just pulled down, or want to change the upstream branch you're tracking, you can use the `-u` or `--set-upstream-to` option to `git branch` to explicitly set it at any time.
755755

0 commit comments

Comments
 (0)