Tue Oct 11 12:01:25 2011 UTC ()
Changes 1.7.7:
* The scripting part of the codebase is getting prepared for i18n/l10n.
* Interix, Cygwin and Minix ports got updated.
* Various updates to git-p4 (in contrib/), fast-import, and git-svn.
* Gitweb learned to read from /etc/gitweb-common.conf when it exists,
  before reading from gitweb_config.perl or from /etc/gitweb.conf
* Various codepaths that invoked zlib deflate/inflate assumed that these
  functions can compress or uncompress more than 4GB data in one call on
  platforms with 64-bit long, which has been corrected.
* Git now recognizes loose objects written by other implementations that
  use a non-standard window size for zlib deflation (e.g. Agit running on
  Android with 4kb window). We used to reject anything that was not
  deflated with 32kb window.
* Interaction between the use of pager and coloring of the output has
  been improved, especially when a command that is not built-in was
  involved.
* "git am" learned to pass the "--exclude=<path>" option through to underlying
  "git apply".
* You can now feed many empty lines before feeding an mbox file to "git am".
* "git archive" can be told to pass the output to gzip compression and
  produce "archive.tar.gz".
* "git bisect" can be used in a bare repository (provided that the test
  you perform per each iteration does not need a working tree, of course).
* The length of abbreviated object names in "git branch -v" output
  now honors the core.abbrev configuration variable.
* "git check-attr" can take relative paths from the command line.
* "git check-attr" learned an "--all" option to list the attributes for a
  given path.
* "git checkout" (both the code to update the files upon checking out a
  different branch and the code to checkout a specific set of files) learned
  to stream the data from object store when possible, without having to
  read the entire contents of a file into memory first. An earlier round
  of this code that is not in any released version had a large leak but
  now it has been plugged.
* "git clone" can now take a "--config key=value" option to set the
  repository configuration options that affect the initial checkout.
* "git commit <paths>..." now lets you feed relative pathspecs that
  refer to outside your current subdirectory.
* "git diff --stat" learned a --stat-count option to limit the output of
  a diffstat report.
* "git diff" learned a "--histogram" option to use a different diff
  generation machinery stolen from jgit, which might give better performance.
* "git diff" had a weird worst case behaviour that can be triggered
  when comparing files with potentially many places that could match.
* "git fetch", "git push" and friends no longer show connection
  errors for addresses that couldn't be connected to when at least one
  address succeeds (this is arguably a regression but a deliberate one).
* "git grep" learned "--break" and "--heading" options, to let users mimic
  the output format of "ack".
* "git grep" learned a "-W" option that shows wider context using the same
  logic used by "git diff" to determine the hunk header.
* Invoking the low-level "git http-fetch" without "-a" option (which
  git itself never did---normal users should not have to worry about
  this) is now deprecated.
* The "--decorate" option to "git log" and its family learned to
  highlight grafted and replaced commits.
* "git rebase master topci" no longer spews usage hints after giving
  the "fatal: no such branch: topci" error message.
* The recursive merge strategy implementation got a fairly large
  fix for many corner cases that may rarely happen in real world
  projects (it has been verified that none of the 16000+ merges in
  the Linux kernel history back to v2.6.12 is affected with the
  corner case bugs this update fixes).
* "git stash" learned an "--include-untracked option".
* "git submodule update" used to stop at the first error updating a
  submodule; it now goes on to update other submodules that can be
  updated, and reports the ones with errors at the end.
* "git push" can be told with the "--recurse-submodules=check" option to
  refuse pushing of the supermodule, if any of its submodules'
  commits hasn't been pushed out to their remotes.
* "git upload-pack" and "git receive-pack" learned to pretend that only a
  subset of the refs exist in a repository. This may help a site to
  put many tiny repositories into one repository (this would not be
  useful for larger repositories as repacking would be problematic).
* "git verify-pack" has been rewritten to use the "index-pack" machinery
  that is more efficient in reading objects in packfiles.
* test scripts for gitweb tried to run even when CGI-related perl modules
  are not installed; they now exit early when the latter are unavailable.


(adam)
diff -r1.20 -r1.21 pkgsrc/devel/scmgit/Makefile.common
diff -r1.28 -r1.29 pkgsrc/devel/scmgit/Makefile.version
diff -r1.35 -r1.36 pkgsrc/devel/scmgit-base/Makefile
diff -r1.25 -r1.26 pkgsrc/devel/scmgit-base/PLIST
diff -r1.42 -r1.43 pkgsrc/devel/scmgit-base/distinfo
diff -r1.10 -r1.11 pkgsrc/devel/scmgit-docs/PLIST

cvs diff -r1.20 -r1.21 pkgsrc/devel/scmgit/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/devel/scmgit/Attic/Makefile.common 2011/09/13 17:58:58 1.20
+++ pkgsrc/devel/scmgit/Attic/Makefile.common 2011/10/11 12:01:24 1.21
@@ -1,28 +1,26 @@ @@ -1,28 +1,26 @@
1# $NetBSD: Makefile.common,v 1.20 2011/09/13 17:58:58 gdt Exp $ 1# $NetBSD: Makefile.common,v 1.21 2011/10/11 12:01:24 adam Exp $
2# 2#
3# used by devel/scmgit-base/Makefile 3# used by devel/scmgit-base/Makefile
4# used by devel/scmgit-docs/Makefile 4# used by devel/scmgit-docs/Makefile
5 5
6.include "../../devel/scmgit/Makefile.version" 6.include "../../devel/scmgit/Makefile.version"
7 7
8DISTNAME= git-${GIT_VERSION} 8DISTNAME= git-${GIT_VERSION}
9CATEGORIES= devel scm 9CATEGORIES= devel scm
10MASTER_SITES?= http://www.kernel.org/pub/software/scm/git/ http://git-core.googlecode.com/files/ 10MASTER_SITES?= http://git-core.googlecode.com/files/
11# Historically .tar.bz2 has been available, but 1.7.6.3 is only .tar.gz 
12#EXTRACT_SUFX= .tar.bz2 
13 11
14MAINTAINER?= pkgsrc-users@NetBSD.org 12MAINTAINER?= pkgsrc-users@NetBSD.org
15HOMEPAGE?= http://git.or.cz/ 13HOMEPAGE?= http://git-scm.com/
16LICENSE= gnu-gpl-v2 14LICENSE= gnu-gpl-v2
17 15
18PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir
19 17
20.include "../../mk/bsd.fast.prefs.mk" 18.include "../../mk/bsd.fast.prefs.mk"
21 19
22PATCHDIR= ${.CURDIR}/../../devel/scmgit-base/patches 20PATCHDIR= ${.CURDIR}/../../devel/scmgit-base/patches
23DISTINFO_FILE= ${.CURDIR}/../../devel/scmgit-base/distinfo 21DISTINFO_FILE= ${.CURDIR}/../../devel/scmgit-base/distinfo
24 22
25USE_TOOLS+= gmake tar perl sh 23USE_TOOLS+= gmake tar perl sh
26 24
27PKG_SYSCONFSUBDIR= git 25PKG_SYSCONFSUBDIR= git
28 26

cvs diff -r1.28 -r1.29 pkgsrc/devel/scmgit/Attic/Makefile.version (expand / switch to unified diff)

--- pkgsrc/devel/scmgit/Attic/Makefile.version 2011/09/13 17:58:58 1.28
+++ pkgsrc/devel/scmgit/Attic/Makefile.version 2011/10/11 12:01:24 1.29
@@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
1# $NetBSD: Makefile.version,v 1.28 2011/09/13 17:58:58 gdt Exp $ 1# $NetBSD: Makefile.version,v 1.29 2011/10/11 12:01:24 adam Exp $
2 2
3GIT_VERSION= 1.7.6.3 3GIT_VERSION= 1.7.7

cvs diff -r1.35 -r1.36 pkgsrc/devel/scmgit-base/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/Attic/Makefile 2011/08/30 09:34:42 1.35
+++ pkgsrc/devel/scmgit-base/Attic/Makefile 2011/10/11 12:01:25 1.36
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.35 2011/08/30 09:34:42 adam Exp $ 1# $NetBSD: Makefile,v 1.36 2011/10/11 12:01:25 adam Exp $
2 2
3.include "../../devel/scmgit/Makefile.common" 3.include "../../devel/scmgit/Makefile.common"
4 4
5PKGNAME= scmgit-base-${GIT_VERSION} 5PKGNAME= scmgit-base-${GIT_VERSION}
6COMMENT= GIT Tree History Storage Tool (base package) 6COMMENT= GIT Tree History Storage Tool (base package)
7 7
8PKG_DESTDIR_SUPPORT= user-destdir 8PKG_DESTDIR_SUPPORT= user-destdir
9 9
10CONFLICTS+= git<4.9.5nb1 # misc/git 10CONFLICTS+= git<4.9.5nb1 # misc/git
11 11
12DEPENDS+= p5-Error>=0.17015:../../devel/p5-Error 12DEPENDS+= p5-Error>=0.17015:../../devel/p5-Error
13 13
14USE_LANGUAGES= c99 14USE_LANGUAGES= c99
@@ -29,27 +29,26 @@ CONFIGURE_ARGS+= --with-zlib=${BUILDLINK @@ -29,27 +29,26 @@ CONFIGURE_ARGS+= --with-zlib=${BUILDLINK
29 29
30BUILD_TARGET= all 30BUILD_TARGET= all
31 31
32REPLACE_SH+= contrib/hooks/post-receive-email 32REPLACE_SH+= contrib/hooks/post-receive-email
33REPLACE_SH+= contrib/hooks/pre-auto-gc-battery 33REPLACE_SH+= contrib/hooks/pre-auto-gc-battery
34 34
35EGDIR= ${PREFIX}/share/examples/scmgit 35EGDIR= ${PREFIX}/share/examples/scmgit
36 36
37GIT_COREDIR= git-core 37GIT_COREDIR= git-core
38GIT_TEMPLATEDIR= templates 38GIT_TEMPLATEDIR= templates
39 39
40GIT_TEMPLATES= description info/exclude 40GIT_TEMPLATES= description info/exclude
41GIT_TEMPLATES+= hooks/applypatch-msg.sample hooks/commit-msg.sample 41GIT_TEMPLATES+= hooks/applypatch-msg.sample hooks/commit-msg.sample
42GIT_TEMPLATES+= hooks/post-commit.sample hooks/post-receive.sample 
43GIT_TEMPLATES+= hooks/post-update.sample hooks/pre-applypatch.sample 42GIT_TEMPLATES+= hooks/post-update.sample hooks/pre-applypatch.sample
44GIT_TEMPLATES+= hooks/pre-commit.sample hooks/pre-rebase.sample 43GIT_TEMPLATES+= hooks/pre-commit.sample hooks/pre-rebase.sample
45GIT_TEMPLATES+= hooks/prepare-commit-msg.sample hooks/update.sample 44GIT_TEMPLATES+= hooks/prepare-commit-msg.sample hooks/update.sample
46 45
47# XXX unused as of now 46# XXX unused as of now
48#GIT_CORE_EXECDIR= libexec/${GIT_COREDIR} 47#GIT_CORE_EXECDIR= libexec/${GIT_COREDIR}
49GIT_CORE_DATADIR= share/${GIT_COREDIR} 48GIT_CORE_DATADIR= share/${GIT_COREDIR}
50GIT_CORE_TEMPLATEDIR= ${GIT_CORE_DATADIR}/${GIT_TEMPLATEDIR} 49GIT_CORE_TEMPLATEDIR= ${GIT_CORE_DATADIR}/${GIT_TEMPLATEDIR}
51 50
52MAKE_DIRS= ${GIT_CORE_TEMPLATEDIR} 51MAKE_DIRS= ${GIT_CORE_TEMPLATEDIR}
53MAKE_DIRS+= ${GIT_CORE_TEMPLATEDIR}/hooks 52MAKE_DIRS+= ${GIT_CORE_TEMPLATEDIR}/hooks
54MAKE_DIRS+= ${GIT_CORE_TEMPLATEDIR}/info 53MAKE_DIRS+= ${GIT_CORE_TEMPLATEDIR}/info
55 54

cvs diff -r1.25 -r1.26 pkgsrc/devel/scmgit-base/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/Attic/PLIST 2011/07/08 11:14:43 1.25
+++ pkgsrc/devel/scmgit-base/Attic/PLIST 2011/10/11 12:01:25 1.26
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.25 2011/07/08 11:14:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.26 2011/10/11 12:01:25 adam Exp $
2bin/git 2bin/git
3bin/git-cvsserver 3bin/git-cvsserver
4bin/git-receive-pack 4bin/git-receive-pack
5bin/git-shell 5bin/git-shell
6bin/git-upload-archive 6bin/git-upload-archive
7bin/git-upload-pack 7bin/git-upload-pack
8${PLIST.gui}bin/gitk 8${PLIST.gui}bin/gitk
9${PERL5_SUB_INSTALLVENDORLIB}/Git.pm 9${PERL5_SUB_INSTALLVENDORLIB}/Git.pm
10lib/perl5/vendor_perl/${PKGMANDIR}/man3/Git.3 10lib/perl5/vendor_perl/${PKGMANDIR}/man3/Git.3
11${PLIST.python}${PYSITELIB}/git_remote_helpers/__init__.py 11${PLIST.python}${PYSITELIB}/git_remote_helpers/__init__.py
12${PLIST.python}${PYSITELIB}/git_remote_helpers/__init__.pyc 12${PLIST.python}${PYSITELIB}/git_remote_helpers/__init__.pyc
13${PLIST.python}${PYSITELIB}/git_remote_helpers/git/__init__.py 13${PLIST.python}${PYSITELIB}/git_remote_helpers/git/__init__.py
14${PLIST.python}${PYSITELIB}/git_remote_helpers/git/__init__.pyc 14${PLIST.python}${PYSITELIB}/git_remote_helpers/git/__init__.pyc
@@ -172,31 +172,44 @@ libexec/git-core/git-tar-tree @@ -172,31 +172,44 @@ libexec/git-core/git-tar-tree
172libexec/git-core/git-unpack-file 172libexec/git-core/git-unpack-file
173libexec/git-core/git-unpack-objects 173libexec/git-core/git-unpack-objects
174libexec/git-core/git-update-index 174libexec/git-core/git-update-index
175libexec/git-core/git-update-ref 175libexec/git-core/git-update-ref
176libexec/git-core/git-update-server-info 176libexec/git-core/git-update-server-info
177libexec/git-core/git-upload-archive 177libexec/git-core/git-upload-archive
178libexec/git-core/git-upload-pack 178libexec/git-core/git-upload-pack
179libexec/git-core/git-var 179libexec/git-core/git-var
180libexec/git-core/git-verify-pack 180libexec/git-core/git-verify-pack
181libexec/git-core/git-verify-tag 181libexec/git-core/git-verify-tag
182libexec/git-core/git-web--browse 182libexec/git-core/git-web--browse
183libexec/git-core/git-whatchanged 183libexec/git-core/git-whatchanged
184libexec/git-core/git-write-tree 184libexec/git-core/git-write-tree
 185libexec/git-core/mergetools/araxis
 186libexec/git-core/mergetools/bc3
 187libexec/git-core/mergetools/defaults
 188libexec/git-core/mergetools/diffuse
 189libexec/git-core/mergetools/ecmerge
 190libexec/git-core/mergetools/emerge
 191libexec/git-core/mergetools/kdiff3
 192libexec/git-core/mergetools/kompare
 193libexec/git-core/mergetools/meld
 194libexec/git-core/mergetools/opendiff
 195libexec/git-core/mergetools/p4merge
 196libexec/git-core/mergetools/tkdiff
 197libexec/git-core/mergetools/tortoisemerge
 198libexec/git-core/mergetools/vim
 199libexec/git-core/mergetools/xxdiff
185share/examples/scmgit/templates/description 200share/examples/scmgit/templates/description
186share/examples/scmgit/templates/hooks/applypatch-msg.sample 201share/examples/scmgit/templates/hooks/applypatch-msg.sample
187share/examples/scmgit/templates/hooks/commit-msg.sample 202share/examples/scmgit/templates/hooks/commit-msg.sample
188share/examples/scmgit/templates/hooks/post-commit.sample 
189share/examples/scmgit/templates/hooks/post-receive.sample 
190share/examples/scmgit/templates/hooks/post-update.sample 203share/examples/scmgit/templates/hooks/post-update.sample
191share/examples/scmgit/templates/hooks/pre-applypatch.sample 204share/examples/scmgit/templates/hooks/pre-applypatch.sample
192share/examples/scmgit/templates/hooks/pre-commit.sample 205share/examples/scmgit/templates/hooks/pre-commit.sample
193share/examples/scmgit/templates/hooks/pre-rebase.sample 206share/examples/scmgit/templates/hooks/pre-rebase.sample
194share/examples/scmgit/templates/hooks/prepare-commit-msg.sample 207share/examples/scmgit/templates/hooks/prepare-commit-msg.sample
195share/examples/scmgit/templates/hooks/update.sample 208share/examples/scmgit/templates/hooks/update.sample
196share/examples/scmgit/templates/info/exclude 209share/examples/scmgit/templates/info/exclude
197${PLIST.gui}share/git-gui/lib/about.tcl 210${PLIST.gui}share/git-gui/lib/about.tcl
198${PLIST.gui}share/git-gui/lib/blame.tcl 211${PLIST.gui}share/git-gui/lib/blame.tcl
199${PLIST.gui}share/git-gui/lib/branch.tcl 212${PLIST.gui}share/git-gui/lib/branch.tcl
200${PLIST.gui}share/git-gui/lib/branch_checkout.tcl 213${PLIST.gui}share/git-gui/lib/branch_checkout.tcl
201${PLIST.gui}share/git-gui/lib/branch_create.tcl 214${PLIST.gui}share/git-gui/lib/branch_create.tcl
202${PLIST.gui}share/git-gui/lib/branch_delete.tcl 215${PLIST.gui}share/git-gui/lib/branch_delete.tcl

cvs diff -r1.42 -r1.43 pkgsrc/devel/scmgit-base/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/Attic/distinfo 2011/09/13 17:58:58 1.42
+++ pkgsrc/devel/scmgit-base/Attic/distinfo 2011/10/11 12:01:25 1.43
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1$NetBSD: distinfo,v 1.42 2011/09/13 17:58:58 gdt Exp $ 1$NetBSD: distinfo,v 1.43 2011/10/11 12:01:25 adam Exp $
2 2
3SHA1 (git-1.7.6.3.tar.gz) = 7264c0b0d97cb6a70447ba3b4b6fa488810d8115 3SHA1 (git-1.7.7.tar.gz) = bbf85bd767ca6b7e9caa1489bb4ba7ec64e0ab35
4RMD160 (git-1.7.6.3.tar.gz) = 8b37b4f83ca2576634a69993060ca2f3993ab689 4RMD160 (git-1.7.7.tar.gz) = 54a185d66fb1f0e1607dc4514640c4b353d2cd1c
5Size (git-1.7.6.3.tar.gz) = 3397595 bytes 5Size (git-1.7.7.tar.gz) = 3475448 bytes
6SHA1 (patch-aa) = f47ff9d8b9ba8592f7bbd21d4b0ab30394e8f9a0 6SHA1 (patch-aa) = f47ff9d8b9ba8592f7bbd21d4b0ab30394e8f9a0
7SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091 7SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
8SHA1 (patch-ae) = 06ea26658a986dc702c1c2c04c1a27f0a01e4dce 8SHA1 (patch-ae) = 06ea26658a986dc702c1c2c04c1a27f0a01e4dce
9SHA1 (patch-af) = 60029a215edf5218a76be41932afb5b9f8c4729a 9SHA1 (patch-af) = 60029a215edf5218a76be41932afb5b9f8c4729a
10SHA1 (patch-ag) = 4f0b9a5745203ea7ef369c8272b3ea7c644762f0 10SHA1 (patch-ag) = 4f0b9a5745203ea7ef369c8272b3ea7c644762f0
11SHA1 (patch-ah) = f22a2160631fb624e9e20616c68ad1a4aa2bebc7 11SHA1 (patch-ah) = f22a2160631fb624e9e20616c68ad1a4aa2bebc7
12SHA1 (patch-ai) = 56b63d4790a11f5eb128186ad5efdd1bcf102f2e 12SHA1 (patch-ai) = 56b63d4790a11f5eb128186ad5efdd1bcf102f2e

cvs diff -r1.10 -r1.11 pkgsrc/devel/scmgit-docs/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-docs/Attic/PLIST 2011/07/08 11:14:43 1.10
+++ pkgsrc/devel/scmgit-docs/Attic/PLIST 2011/10/11 12:01:25 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.10 2011/07/08 11:14:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.11 2011/10/11 12:01:25 adam Exp $
2man/man1/git-add.1 2man/man1/git-add.1
3man/man1/git-am.1 3man/man1/git-am.1
4man/man1/git-annotate.1 4man/man1/git-annotate.1
5man/man1/git-apply.1 5man/man1/git-apply.1
6man/man1/git-archimport.1 6man/man1/git-archimport.1
7man/man1/git-archive.1 7man/man1/git-archive.1
8man/man1/git-bisect.1 8man/man1/git-bisect.1
9man/man1/git-blame.1 9man/man1/git-blame.1
10man/man1/git-branch.1 10man/man1/git-branch.1
11man/man1/git-bundle.1 11man/man1/git-bundle.1
12man/man1/git-cat-file.1 12man/man1/git-cat-file.1
13man/man1/git-check-attr.1 13man/man1/git-check-attr.1
14man/man1/git-check-ref-format.1 14man/man1/git-check-ref-format.1
@@ -86,26 +86,27 @@ man/man1/git-peek-remote.1 @@ -86,26 +86,27 @@ man/man1/git-peek-remote.1
86man/man1/git-prune-packed.1 86man/man1/git-prune-packed.1
87man/man1/git-prune.1 87man/man1/git-prune.1
88man/man1/git-pull.1 88man/man1/git-pull.1
89man/man1/git-push.1 89man/man1/git-push.1
90man/man1/git-quiltimport.1 90man/man1/git-quiltimport.1
91man/man1/git-read-tree.1 91man/man1/git-read-tree.1
92man/man1/git-rebase.1 92man/man1/git-rebase.1
93man/man1/git-receive-pack.1 93man/man1/git-receive-pack.1
94man/man1/git-reflog.1 94man/man1/git-reflog.1
95man/man1/git-relink.1 95man/man1/git-relink.1
96man/man1/git-remote-ext.1 96man/man1/git-remote-ext.1
97man/man1/git-remote-fd.1 97man/man1/git-remote-fd.1
98man/man1/git-remote-helpers.1 98man/man1/git-remote-helpers.1
 99man/man1/git-remote-testgit.1
99man/man1/git-remote.1 100man/man1/git-remote.1
100man/man1/git-repack.1 101man/man1/git-repack.1
101man/man1/git-replace.1 102man/man1/git-replace.1
102man/man1/git-repo-config.1 103man/man1/git-repo-config.1
103man/man1/git-request-pull.1 104man/man1/git-request-pull.1
104man/man1/git-rerere.1 105man/man1/git-rerere.1
105man/man1/git-reset.1 106man/man1/git-reset.1
106man/man1/git-rev-list.1 107man/man1/git-rev-list.1
107man/man1/git-rev-parse.1 108man/man1/git-rev-parse.1
108man/man1/git-revert.1 109man/man1/git-revert.1
109man/man1/git-rm.1 110man/man1/git-rm.1
110man/man1/git-send-email.1 111man/man1/git-send-email.1
111man/man1/git-send-pack.1 112man/man1/git-send-pack.1
@@ -142,17 +143,18 @@ man/man1/git-whatchanged.1 @@ -142,17 +143,18 @@ man/man1/git-whatchanged.1
142man/man1/git-write-tree.1 143man/man1/git-write-tree.1
143man/man1/git.1 144man/man1/git.1
144man/man1/gitk.1 145man/man1/gitk.1
145man/man5/gitattributes.5 146man/man5/gitattributes.5
146man/man5/githooks.5 147man/man5/githooks.5
147man/man5/gitignore.5 148man/man5/gitignore.5
148man/man5/gitmodules.5 149man/man5/gitmodules.5
149man/man5/gitrepository-layout.5 150man/man5/gitrepository-layout.5
150man/man7/gitcli.7 151man/man7/gitcli.7
151man/man7/gitcore-tutorial.7 152man/man7/gitcore-tutorial.7
152man/man7/gitcvs-migration.7 153man/man7/gitcvs-migration.7
153man/man7/gitdiffcore.7 154man/man7/gitdiffcore.7
154man/man7/gitglossary.7 155man/man7/gitglossary.7
 156man/man7/gitnamespaces.7
155man/man7/gitrevisions.7 157man/man7/gitrevisions.7
156man/man7/gittutorial-2.7 158man/man7/gittutorial-2.7
157man/man7/gittutorial.7 159man/man7/gittutorial.7
158man/man7/gitworkflows.7 160man/man7/gitworkflows.7