Skip to content

Commit 92e802c

Browse files
author
Junio C Hamano
committed
GIT 1.0.7
Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parents 17dff84 + c1fe2fe commit 92e802c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+203
-116
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,4 @@ git-core.spec
119119
*.exe
120120
libgit.a
121121
*.o
122+
*.py[co]

Documentation/cvs-migration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ mailing list archives for details).
138138
git has a couple of alternatives, though, that you may find sufficient
139139
or even superior depending on your use. One is called "git-whatchanged"
140140
(for obvious reasons) and the other one is called "pickaxe" ("a tool for
141-
the software archeologist").
141+
the software archaeologist").
142142

143143
The "git-whatchanged" script is a truly trivial script that can give you
144144
a good overview of what has changed in a file or a directory (or an

Documentation/diff-format.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ git specific extension to diff format
117117
What -p option produces is slightly different from the
118118
traditional diff format.
119119

120-
1. It is preceeded with a "git diff" header, that looks like
120+
1. It is preceded with a "git diff" header, that looks like
121121
this:
122122

123123
diff --git a/file1 b/file2

Documentation/diff-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
--abbrev[=<n>]::
2222
Instead of showing the full 40-byte hexadecimal object
2323
name in diff-raw format output and diff-tree header
24-
lines, show only handful dhexigits prefix. This is
24+
lines, show only handful hexdigits prefix. This is
2525
independent of --full-index option above, which controls
2626
the diff-patch output format. Non default number of
2727
digits can be specified with --abbrev=<n>.

Documentation/git-add.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ DISCUSSION
3131
----------
3232

3333
The list of <file> given to the command is fed to `git-ls-files`
34-
command to list files that are not registerd in the index and
34+
command to list files that are not registered in the index and
3535
are not ignored/excluded by `$GIT_DIR/info/exclude` file or
3636
`.gitignore` file in each directory. This means two things:
3737

Documentation/git-am.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ git-am - Apply a series of patches in a mailbox
88

99
SYNOPSIS
1010
--------
11+
[verse]
1112
'git-am' [--signoff] [--dotest=<dir>] [--utf8] [--binary] [--3way] <mbox>...
1213
'git-am' [--skip | --resolved]
1314

Documentation/git-apply.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ git-apply - Apply patch on a git index file and a work tree
88

99
SYNOPSIS
1010
--------
11-
'git-apply' [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [-z] [<patch>...]
11+
[verse]
12+
'git-apply' [--stat] [--numstat] [--summary] [--check] [--index] [--apply]
13+
[--no-add] [--index-info] [--allow-binary-replacement] [-z]
14+
[<patch>...]
1215

1316
DESCRIPTION
1417
-----------

Documentation/git-archimport.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ git-archimport - Import an Arch repository into git
88

99
SYNOPSIS
1010
--------
11-
`git-archimport` [ -h ] [ -v ] [ -o ] [ -a ] [ -f ] [ -T ]
12-
[ -D depth ] [ -t tempdir ]
13-
<archive/branch> [ <archive/branch> ]
11+
[verse]
12+
`git-archimport` [-h] [-v] [-o] [-a] [-f] [-T] [-D depth] [-t tempdir]
13+
<archive/branch> [ <archive/branch> ]
1414

1515
DESCRIPTION
1616
-----------
1717
Imports a project from one or more Arch repositories. It will follow branches
1818
and repositories within the namespaces defined by the <archive/branch>
19-
parameters suppplied. If it cannot find the remote branch a merge comes from
19+
parameters supplied. If it cannot find the remote branch a merge comes from
2020
it will just import it as a regular commit. If it can find it, it will mark it
2121
as a merge whenever possible (see discussion below).
2222

Documentation/git-cat-file.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git-cat-file - Provide content or type information for repository objects
88

99
SYNOPSIS
1010
--------
11-
'git-cat-file' (-t | -s | -e | <type>) <object>
11+
'git-cat-file' [-t | -s | -e | <type>] <object>
1212

1313
DESCRIPTION
1414
-----------

Documentation/git-checkout-index.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ git-checkout-index - Copy files from the index to the working directory
88

99
SYNOPSIS
1010
--------
11+
[verse]
1112
'git-checkout-index' [-u] [-q] [-a] [-f] [-n] [--prefix=<string>]
12-
[--stage=<number>] [--] <file>...
13+
[--stage=<number>] [--] <file>...
1314

1415
DESCRIPTION
1516
-----------

0 commit comments

Comments
 (0)