@@ -1495,7 +1495,7 @@ Ensuring good performance
14951495-------------------------
14961496
14971497On large repositories, git depends on compression to keep the history
1498- information from taking up to much space on disk or in memory.
1498+ information from taking up too much space on disk or in memory.
14991499
15001500This compression is not performed automatically. Therefore you
15011501should occasionally run gitlink:git-gc[1]:
@@ -1920,7 +1920,7 @@ As with git-fetch, git-push will complain if this does not result in
19201920a <<fast-forwards,fast forward>>. Normally this is a sign of
19211921something wrong. However, if you are sure you know what you're
19221922doing, you may force git-push to perform the update anyway by
1923- proceeding the branch name by a plus sign:
1923+ preceding the branch name by a plus sign:
19241924
19251925-------------------------------------------------
19261926$ git push ssh://yourserver.com/~you/proj.git +master
@@ -2040,7 +2040,7 @@ $ git branch --track test origin/master
20402040$ git branch --track release origin/master
20412041-------------------------------------------------
20422042
2043- These can be easily kept up to date using gitlink:git-pull[1]
2043+ These can be easily kept up to date using gitlink:git-pull[1].
20442044
20452045-------------------------------------------------
20462046$ git checkout test && git pull
@@ -2132,7 +2132,7 @@ changes are in a specific branch, use:
21322132$ git log linux..branchname | git-shortlog
21332133-------------------------------------------------
21342134
2135- To see whether it has already been merged into the test or release branches
2135+ To see whether it has already been merged into the test or release branches,
21362136use:
21372137
21382138-------------------------------------------------
@@ -2145,12 +2145,12 @@ or
21452145$ git log release..branchname
21462146-------------------------------------------------
21472147
2148- (If this branch has not yet been merged you will see some log entries.
2148+ (If this branch has not yet been merged, you will see some log entries.
21492149If it has been merged, then there will be no output.)
21502150
21512151Once a patch completes the great cycle (moving from test to release,
21522152then pulled by Linus, and finally coming back into your local
2153- "origin/master" branch) the branch for this change is no longer needed.
2153+ "origin/master" branch), the branch for this change is no longer needed.
21542154You detect this when the output from:
21552155
21562156-------------------------------------------------
@@ -2479,7 +2479,7 @@ $ git checkout -b mywork-new origin
24792479$ gitk origin..mywork &
24802480-------------------------------------------------
24812481
2482- And browse through the list of patches in the mywork branch using gitk,
2482+ and browse through the list of patches in the mywork branch using gitk,
24832483applying them (possibly in a different order) to mywork-new using
24842484cherry-pick, and possibly modifying them as you go using commit --amend.
24852485The gitlink:git-gui[1] command may also help as it allows you to
@@ -2739,7 +2739,7 @@ others:
27392739
27402740- Git can quickly determine whether two objects are identical or not,
27412741 just by comparing names.
2742- - Since object names are computed the same way in ever repository, the
2742+ - Since object names are computed the same way in every repository, the
27432743 same content stored in two repositories will always be stored under
27442744 the same name.
27452745- Git can detect errors when it reads an object, by checking that the
@@ -3425,9 +3425,10 @@ The Workflow
34253425------------
34263426
34273427High-level operations such as gitlink:git-commit[1],
3428- gitlink:git-checkout[1] and git-reset[1] work by moving data between the
3429- working tree, the index, and the object database. Git provides
3430- low-level operations which perform each of these steps individually.
3428+ gitlink:git-checkout[1] and gitlink:git-reset[1] work by moving data
3429+ between the working tree, the index, and the object database. Git
3430+ provides low-level operations which perform each of these steps
3431+ individually.
34313432
34323433Generally, all "git" operations work on the index file. Some operations
34333434work *purely* on the index file (showing the current state of the
@@ -3704,7 +3705,7 @@ Merging multiple trees, continued
37043705---------------------------------
37053706
37063707Sadly, many merges aren't trivial. If there are files that have
3707- been added. moved or removed, or if both branches have modified the
3708+ been added, moved or removed, or if both branches have modified the
37083709same file, you will be left with an index tree that contains "merge
37093710entries" in it. Such an index tree can 'NOT' be written out to a tree
37103711object, and you will have to resolve any such merge clashes using
@@ -4061,7 +4062,7 @@ $ git branch new # create branch "new" starting at current HEAD
40614062$ git branch -d new # delete branch "new"
40624063-----------------------------------------------
40634064
4064- Instead of basing new branch on current HEAD (the default), use:
4065+ Instead of basing a new branch on current HEAD (the default), use:
40654066
40664067-----------------------------------------------
40674068$ git branch new test # branch named "test"
0 commit comments