[PATCH] use it's and its correctly in documentation
At one place in Documentation/tutorial.txt and several in the base README, its was wrongly used in place of it's or vice versa. One instance remains somewhere in Documentation/howto/, which I didn't correct because it's in a quotation. Signed-off-by: Greg Louis <glouis@dynamicro.ca> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
fbfd60d651
commit
cdacb6208f
@ -891,7 +891,7 @@ an empty directory:
|
|||||||
mkdir my-git.git
|
mkdir my-git.git
|
||||||
|
|
||||||
Then, make that directory into a GIT repository by running
|
Then, make that directory into a GIT repository by running
|
||||||
git-init-db, but this time, since it's name is not the usual
|
git-init-db, but this time, since its name is not the usual
|
||||||
".git", we do things slightly differently:
|
".git", we do things slightly differently:
|
||||||
|
|
||||||
GIT_DIR=my-git.git git-init-db
|
GIT_DIR=my-git.git git-init-db
|
||||||
|
10
README
10
README
@ -98,12 +98,12 @@ contents").
|
|||||||
In particular, since the blob is entirely defined by its data, if two
|
In particular, since the blob is entirely defined by its data, if two
|
||||||
files in a directory tree (or in multiple different versions of the
|
files in a directory tree (or in multiple different versions of the
|
||||||
repository) have the same contents, they will share the same blob
|
repository) have the same contents, they will share the same blob
|
||||||
object. The object is totally independent of it's location in the
|
object. The object is totally independent of its location in the
|
||||||
directory tree, and renaming a file does not change the object that
|
directory tree, and renaming a file does not change the object that
|
||||||
file is associated with in any way.
|
file is associated with in any way.
|
||||||
|
|
||||||
A blob is typically created when link:git-update-cache.html[git-update-cache]
|
A blob is typically created when link:git-update-cache.html[git-update-cache]
|
||||||
is run, and it's data can be accessed by link:git-cat-file.html[git-cat-file].
|
is run, and its data can be accessed by link:git-cat-file.html[git-cat-file].
|
||||||
|
|
||||||
Tree Object
|
Tree Object
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
@ -142,7 +142,7 @@ noticing that the blob stayed the same. However, renames with data
|
|||||||
changes need a smarter "diff" implementation.
|
changes need a smarter "diff" implementation.
|
||||||
|
|
||||||
A tree is created with link:git-write-tree.html[git-write-tree] and
|
A tree is created with link:git-write-tree.html[git-write-tree] and
|
||||||
it's data can be accessed by link:git-ls-tree.html[git-ls-tree]
|
its data can be accessed by link:git-ls-tree.html[git-ls-tree]
|
||||||
|
|
||||||
Commit Object
|
Commit Object
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
@ -167,7 +167,7 @@ of the parents), and describing that makes no sense in this idiotic
|
|||||||
file manager.
|
file manager.
|
||||||
|
|
||||||
A commit is created with link:git-commit-tree.html[git-commit-tree] and
|
A commit is created with link:git-commit-tree.html[git-commit-tree] and
|
||||||
it's data can be accessed by link:git-cat-file.html[git-cat-file]
|
its data can be accessed by link:git-cat-file.html[git-cat-file]
|
||||||
|
|
||||||
Trust
|
Trust
|
||||||
~~~~~
|
~~~~~
|
||||||
@ -213,7 +213,7 @@ integrity; the trust framework (and signature provision and
|
|||||||
verification) has to come from outside.
|
verification) has to come from outside.
|
||||||
|
|
||||||
A tag is created with link:git-mktag.html[git-mktag] and
|
A tag is created with link:git-mktag.html[git-mktag] and
|
||||||
it's data can be accessed by link:git-cat-file.html[git-cat-file]
|
its data can be accessed by link:git-cat-file.html[git-cat-file]
|
||||||
|
|
||||||
|
|
||||||
The "index" aka "Current Directory Cache"
|
The "index" aka "Current Directory Cache"
|
||||||
|
Loading…
Reference in New Issue
Block a user