Tue Jun 24 08:21:04 2008 UTC ()
Update to git-1.5.6.

GIT v1.5.6 Release Notes
========================

Updates since v1.5.5
--------------------

(subsystems)

* Comes with updated gitk and git-gui.

(portability)

* git will build on AIX better than before now.

* core.ignorecase configuration variable can be used to work better on
  filesystems that are not case sensitive.

* "git init" now autodetects the case sensitivity of the filesystem and
  sets core.ignorecase accordingly.

* cpio is no longer used; neither "curl" binary (libcurl is still used).

(documentation)

* Many freestanding documentation pages have been converted and made
  available to "git help" (aka "man git<something>") as section 7 of
  the manual pages. This means bookmarks to some HTML documentation
  files may need to be updated (eg "tutorial.html" became
  "gittutorial.html").

(performance)

* "git clone" was rewritten in C.  This will hopefully help cloning a
  repository with insane number of refs.

* "git rebase --onto $there $from $branch" used to switch to the tip of
  $branch only to immediately reset back to $from, smudging work tree
  files unnecessarily.  This has been optimized.

* Object creation codepath in "git-svn" has been optimized by enhancing
  plumbing commands git-cat-file and git-hash-object.

(usability, bells and whistles)

* "git add -p" (and the "patch" subcommand of "git add -i") can choose to
  apply (or not apply) mode changes independently from contents changes.

* "git bisect help" gives longer and more helpful usage information.

* "git bisect" does not use a special branch "bisect" anymore; instead, it
  does its work on a detached HEAD.

* "git branch" (and "git checkout -b") can be told to set up
  branch.<name>.rebase automatically, so that later you can say "git pull"
  and magically cause "git pull --rebase" to happen.

* "git branch --merged" and "git branch --no-merged" can be used to list
  branches that have already been merged (or not yet merged) to the
  current branch.

* "git cherry-pick" and "git revert" can add a sign-off.

* "git commit" mentions the author identity when you are committing
  somebody else's changes.

* "git diff/log --dirstat" output is consistent between binary and textual
  changes.

* "git filter-branch" rewrites signed tags by demoting them to annotated.

* "git format-patch --no-binary" can produce a patch that lack binary
  changes (i.e. cannot be used to propagate the whole changes) meant only
  for reviewing.

* "git init --bare" is a synonym for "git --bare init" now.

* "git gc --auto" honors a new pre-auto-gc hook to temporarily disable it.

* "git log --pretty=tformat:<custom format>" gives a LF after each entry,
  instead of giving a LF between each pair of entries which is how
  "git log --pretty=format:<custom format>" works.

* "git log" and friends learned the "--graph" option to show the ancestry
  graph at the left margin of the output.

* "git log" and friends can be told to use date format that is different
  from the default via 'log.date' configuration variable.

* "git send-email" now can send out messages outside a git repository.

* "git send-email --compose" was made aware of rfc2047 quoting.

* "git status" can optionally include output from "git submodule
  summary".

* "git svn" learned --add-author-from option to propagate the authorship
  by munging the commit log message.

* new object creation and looking up in "git svn" has been optimized.

* "gitweb" can read from a system-wide configuration file.

(internal)

* "git unpack-objects" and "git receive-pack" is now more strict about
  detecting breakage in the objects they receive over the wire.


(bjs)
diff -r1.6 -r1.7 pkgsrc/devel/scmgit-base/Makefile
diff -r1.4 -r1.5 pkgsrc/devel/scmgit-base/PLIST
diff -r1.8 -r1.9 pkgsrc/devel/scmgit-base/distinfo
diff -r1.2 -r1.3 pkgsrc/devel/scmgit-base/patches/patch-ab
diff -r1.1 -r1.2 pkgsrc/devel/scmgit-base/patches/patch-ac
diff -r1.1 -r1.2 pkgsrc/devel/scmgit-base/patches/patch-aj
diff -r1.3 -r1.4 pkgsrc/devel/scmgit-docs/PLIST

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

--- pkgsrc/devel/scmgit-base/Attic/Makefile 2008/04/21 16:34:45 1.6
+++ pkgsrc/devel/scmgit-base/Attic/Makefile 2008/06/24 08:21:04 1.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.6 2008/04/21 16:34:45 xtraeme Exp $ 1# $NetBSD: Makefile,v 1.7 2008/06/24 08:21:04 bjs Exp $
2# 2#
3 3
4.include "${.CURDIR}/../scmgit/Makefile.common" 4.include "${.CURDIR}/../scmgit/Makefile.common"
5 5
6PKGNAME= scmgit-base-${GIT_VERSION} 6PKGNAME= scmgit-base-${GIT_VERSION}
7COMMENT= GIT Tree History Storage Tool (base package) 7COMMENT= GIT Tree History Storage Tool (base package)
8 8
9PKG_DESTDIR_SUPPORT= user-destdir 9PKG_DESTDIR_SUPPORT= user-destdir
10 10
11CONFLICTS+= git-[0-9]* # misc/git 11CONFLICTS+= git-[0-9]* # misc/git
12 12
13USE_LANGUAGES= c99 13USE_LANGUAGES= c99
14USE_TOOLS+= perl:run sh:run msgfmt 14USE_TOOLS+= perl:run sh:run msgfmt
@@ -18,24 +18,28 @@ CFLAGS.NetBSD+= -D_NETBSD_SOURCE @@ -18,24 +18,28 @@ CFLAGS.NetBSD+= -D_NETBSD_SOURCE
18CONFIGURE_ARGS+= --with-curl=${BUILDLINK_PREFIX.curl:Q} 18CONFIGURE_ARGS+= --with-curl=${BUILDLINK_PREFIX.curl:Q}
19CONFIGURE_ARGS+= --with-expat=${BUILDLINK_PREFIX.expat:Q} 19CONFIGURE_ARGS+= --with-expat=${BUILDLINK_PREFIX.expat:Q}
20CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv:Q} 20CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv:Q}
21CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q} 21CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
22CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib:Q} 22CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib:Q}
23 23
24BUILD_TARGET= all 24BUILD_TARGET= all
25INSTALL_TARGET= install 25INSTALL_TARGET= install
26 26
27PERL5_CONFIGURE= no 27PERL5_CONFIGURE= no
28PERL5_PACKLIST= auto/Git/.packlist 28PERL5_PACKLIST= auto/Git/.packlist
29REPLACE_PERL+= *.perl */*.perl */*/*.perl 29REPLACE_PERL+= *.perl */*.perl */*/*.perl
30 30
 31GITCOREDIR= ${PREFIX}/libexec/git-core/
 32
 33CONFIGURE_ENV+= gitexecdir=${GITCOREDIR:Q}
 34
31#.include "../../mk/emacs.mk" # XXX TODO (see patch-ad) 35#.include "../../mk/emacs.mk" # XXX TODO (see patch-ad)
32 36
33.include "options.mk" 37.include "options.mk"
34.include "../../lang/perl5/module.mk" 38.include "../../lang/perl5/module.mk"
35.include "../../converters/libiconv/buildlink3.mk" 39.include "../../converters/libiconv/buildlink3.mk"
36.include "../../devel/zlib/buildlink3.mk" 40.include "../../devel/zlib/buildlink3.mk"
37.include "../../security/openssl/buildlink3.mk" 41.include "../../security/openssl/buildlink3.mk"
38.include "../../textproc/expat/buildlink3.mk" 42.include "../../textproc/expat/buildlink3.mk"
39.include "../../www/curl/buildlink3.mk" 43.include "../../www/curl/buildlink3.mk"
40 44
41.include "../../mk/bsd.pkg.mk" 45.include "../../mk/bsd.pkg.mk"

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

--- pkgsrc/devel/scmgit-base/Attic/PLIST 2008/04/21 16:34:45 1.4
+++ pkgsrc/devel/scmgit-base/Attic/PLIST 2008/06/24 08:21:04 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.4 2008/04/21 16:34:45 xtraeme Exp $ 1@comment $NetBSD: PLIST,v 1.5 2008/06/24 08:21:04 bjs Exp $
2bin/git 2bin/git
3${PLIST.gui}bin/gitk 3${PLIST.gui}bin/gitk
4libexec/git-core/git 4libexec/git-core/git
5libexec/git-core/git-add 5libexec/git-core/git-add
6libexec/git-core/git-add--interactive 6libexec/git-core/git-add--interactive
7libexec/git-core/git-am 7libexec/git-core/git-am
8libexec/git-core/git-annotate 8libexec/git-core/git-annotate
9libexec/git-core/git-apply 9libexec/git-core/git-apply
10libexec/git-core/git-archimport 10libexec/git-core/git-archimport
11libexec/git-core/git-archive 11libexec/git-core/git-archive
12libexec/git-core/git-bisect 12libexec/git-core/git-bisect
13libexec/git-core/git-blame 13libexec/git-core/git-blame
14libexec/git-core/git-branch 14libexec/git-core/git-branch
@@ -185,27 +185,29 @@ ${PLIST.gui}share/git-gui/lib/msgs/ru.ms @@ -185,27 +185,29 @@ ${PLIST.gui}share/git-gui/lib/msgs/ru.ms
185${PLIST.gui}share/git-gui/lib/msgs/sv.msg 185${PLIST.gui}share/git-gui/lib/msgs/sv.msg
186${PLIST.gui}share/git-gui/lib/msgs/zh_cn.msg 186${PLIST.gui}share/git-gui/lib/msgs/zh_cn.msg
187${PLIST.gui}share/git-gui/lib/option.tcl 187${PLIST.gui}share/git-gui/lib/option.tcl
188${PLIST.gui}share/git-gui/lib/remote.tcl 188${PLIST.gui}share/git-gui/lib/remote.tcl
189${PLIST.gui}share/git-gui/lib/remote_branch_delete.tcl 189${PLIST.gui}share/git-gui/lib/remote_branch_delete.tcl
190${PLIST.gui}share/git-gui/lib/shortcut.tcl 190${PLIST.gui}share/git-gui/lib/shortcut.tcl
191${PLIST.gui}share/git-gui/lib/spellcheck.tcl 191${PLIST.gui}share/git-gui/lib/spellcheck.tcl
192${PLIST.gui}share/git-gui/lib/status_bar.tcl 192${PLIST.gui}share/git-gui/lib/status_bar.tcl
193${PLIST.gui}share/git-gui/lib/tclIndex 193${PLIST.gui}share/git-gui/lib/tclIndex
194${PLIST.gui}share/git-gui/lib/transport.tcl 194${PLIST.gui}share/git-gui/lib/transport.tcl
195${PLIST.gui}share/git-gui/lib/win32.tcl 195${PLIST.gui}share/git-gui/lib/win32.tcl
196${PLIST.gui}share/git-gui/lib/win32_shortcut.js 196${PLIST.gui}share/git-gui/lib/win32_shortcut.js
197${PLIST.gui}share/gitk/lib/msgs/de.msg 197${PLIST.gui}share/gitk/lib/msgs/de.msg
 198${PLIST.gui}share/gitk/lib/msgs/es.msg
198${PLIST.gui}share/gitk/lib/msgs/it.msg 199${PLIST.gui}share/gitk/lib/msgs/it.msg
 200${PLIST.gui}share/gitk/lib/msgs/sv.msg
199${PLIST.gui}@dirrm share/gitk/lib/msgs 201${PLIST.gui}@dirrm share/gitk/lib/msgs
200${PLIST.gui}@dirrm share/gitk/lib 202${PLIST.gui}@dirrm share/gitk/lib
201${PLIST.gui}@dirrm share/gitk 203${PLIST.gui}@dirrm share/gitk
202${PLIST.gui}@dirrm share/git-gui/lib/msgs 204${PLIST.gui}@dirrm share/git-gui/lib/msgs
203${PLIST.gui}@dirrm share/git-gui/lib 205${PLIST.gui}@dirrm share/git-gui/lib
204${PLIST.gui}@dirrm share/git-gui 206${PLIST.gui}@dirrm share/git-gui
205@dirrm share/git-core/templates/info 207@dirrm share/git-core/templates/info
206@dirrm share/git-core/templates/hooks 208@dirrm share/git-core/templates/hooks
207@exec ${MKDIR} %D/share/git-core/templates/branches 209@exec ${MKDIR} %D/share/git-core/templates/branches
208@dirrm share/git-core/templates/branches 210@dirrm share/git-core/templates/branches
209@dirrm share/git-core/templates 211@dirrm share/git-core/templates
210@dirrm share/git-core 212@dirrm share/git-core
211@dirrm libexec/git-core 213@dirrm libexec/git-core

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

--- pkgsrc/devel/scmgit-base/Attic/distinfo 2008/04/25 16:40:47 1.8
+++ pkgsrc/devel/scmgit-base/Attic/distinfo 2008/06/24 08:21:04 1.9
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1$NetBSD: distinfo,v 1.8 2008/04/25 16:40:47 bjs Exp $ 1$NetBSD: distinfo,v 1.9 2008/06/24 08:21:04 bjs Exp $
2 2
3SHA1 (git-1.5.5.1.tar.gz) = bb254a23a212fd55642c2049181d37a6ecf57117 3SHA1 (git-1.5.6.tar.gz) = 2b0ea373e78c8bc3f4476dbd5738594abe9abf46
4RMD160 (git-1.5.5.1.tar.gz) = d4d3cf6e7257c590ba9dcaccc2cb5fa041afef01 4RMD160 (git-1.5.6.tar.gz) = 50adf026374d834f4d82f862987598a64e6e0b6e
5Size (git-1.5.5.1.tar.gz) = 2002900 bytes 5Size (git-1.5.6.tar.gz) = 2087708 bytes
6SHA1 (patch-aa) = 5af7779f0ac99aa6694d2a4d87ed999ef21c9375 6SHA1 (patch-aa) = 5af7779f0ac99aa6694d2a4d87ed999ef21c9375
7SHA1 (patch-ab) = 746bcea15853cd78b14dc2916f5f02bf67e59751 7SHA1 (patch-ab) = 519c6b2892d9483c08b08f7874790ab05bc3f2d6
8SHA1 (patch-ac) = b8b70fabbd2857d5b4962b94d2c852f8d092ef27 8SHA1 (patch-ac) = 1f358de94d7476212c02374de888fbc372b60f32
9SHA1 (patch-ad) = 1b5ea997ea60206857b385a670509897637d5078 9SHA1 (patch-ad) = 1b5ea997ea60206857b385a670509897637d5078
10SHA1 (patch-ae) = 502cf80e047155a1302cbdafdd2a82e6077077e1 10SHA1 (patch-ae) = 502cf80e047155a1302cbdafdd2a82e6077077e1
11SHA1 (patch-af) = 93b83ac35f3f48cbf9a8ee39db0709547bf9d6c3 11SHA1 (patch-af) = 93b83ac35f3f48cbf9a8ee39db0709547bf9d6c3
12SHA1 (patch-ag) = 8918a23e50f4e1f9aa0bb5dda4404140cda3c5b5 12SHA1 (patch-ag) = 8918a23e50f4e1f9aa0bb5dda4404140cda3c5b5
13SHA1 (patch-ah) = 94947b3d79c43246388da9c434f9e71e6716c790 13SHA1 (patch-ah) = 94947b3d79c43246388da9c434f9e71e6716c790
14SHA1 (patch-ai) = 95b2b0a41b8b6f0ee804b48a3f3686d2fdf164f5 14SHA1 (patch-ai) = 95b2b0a41b8b6f0ee804b48a3f3686d2fdf164f5
15SHA1 (patch-aj) = efd57b17ed88c8892cee757c3159e32efcb07560 15SHA1 (patch-aj) = 54c2200363b4d2cc5eb6266c4b62d4a7fc43dd07

cvs diff -r1.2 -r1.3 pkgsrc/devel/scmgit-base/patches/Attic/patch-ab (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/patches/Attic/patch-ab 2008/02/06 07:53:32 1.2
+++ pkgsrc/devel/scmgit-base/patches/Attic/patch-ab 2008/06/24 08:21:04 1.3
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-ab,v 1.2 2008/02/06 07:53:32 bjs Exp $ 1$NetBSD: patch-ab,v 1.3 2008/06/24 08:21:04 bjs Exp $
2 2
3--- git-compat-util.h.orig 2008-02-01 23:09:01.000000000 -0500 3--- git-compat-util.h.orig 2008-06-18 18:49:49.000000000 -0400
4+++ git-compat-util.h 4+++ git-compat-util.h
5@@ -39,7 +39,7 @@ 5@@ -39,7 +39,7 @@
6 /* Approximation of the length of the decimal representation of this type. */ 6 /* Approximation of the length of the decimal representation of this type. */
7 #define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1) 7 #define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1)
8  8
9-#if !defined(__APPLE__) && !defined(__FreeBSD__) 9-#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX)
10+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__sun) 10+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX) && !defined(__sun)
11 #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */ 11 #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
12 #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */ 12 #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
13 #endif 13 #endif

cvs diff -r1.1 -r1.2 pkgsrc/devel/scmgit-base/patches/Attic/patch-ac (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/patches/Attic/patch-ac 2008/02/06 07:53:32 1.1
+++ pkgsrc/devel/scmgit-base/patches/Attic/patch-ac 2008/06/24 08:21:04 1.2
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1$NetBSD: patch-ac,v 1.1 2008/02/06 07:53:32 bjs Exp $ 1$NetBSD: patch-ac,v 1.2 2008/06/24 08:21:04 bjs Exp $
2 2
3--- gitk-git/Makefile.orig 2008-02-01 23:09:01.000000000 -0500 3--- gitk-git/Makefile.orig 2008-06-18 18:49:49.000000000 -0400
4+++ gitk-git/Makefile 4+++ gitk-git/Makefile
5@@ -36,9 +36,9 @@ endif 5@@ -40,9 +40,9 @@ endif
6 all:: gitk-wish $(ALL_MSGFILES) 6 all:: gitk-wish $(ALL_MSGFILES)
7  7
8 install:: all 8 install:: all
9- $(INSTALL) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk 9- $(INSTALL) -m 755 gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
10- $(INSTALL) -d '$(DESTDIR_SQ)$(msgsdir_SQ)' 10- $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(msgsdir_SQ)'
11- $(foreach p,$(ALL_MSGFILES), $(INSTALL) $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true 11- $(foreach p,$(ALL_MSGFILES), $(INSTALL) -m 644 $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true
12+ $(BSD_INSTALL_SCRIPT) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk 12+ $(BSD_INSTALL_SCRIPT) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
13+ $(BSD_INSTALL_DATA_DIR) '$(DESTDIR_SQ)$(msgsdir_SQ)' 13+ $(BSD_INSTALL_DATA_DIR) '$(DESTDIR_SQ)$(msgsdir_SQ)'
14+ $(foreach p,$(ALL_MSGFILES), $(BSD_INSTALL_DATA) $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true 14+ $(foreach p,$(ALL_MSGFILES), $(BSD_INSTALL_DATA) $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true
15  15
16 uninstall:: 16 uninstall::
17 $(foreach p,$(ALL_MSGFILES), $(RM) '$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) &&) true 17 $(foreach p,$(ALL_MSGFILES), $(RM) '$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) &&) true

cvs diff -r1.1 -r1.2 pkgsrc/devel/scmgit-base/patches/Attic/patch-aj (expand / switch to unified diff)

--- pkgsrc/devel/scmgit-base/patches/Attic/patch-aj 2008/04/21 01:09:51 1.1
+++ pkgsrc/devel/scmgit-base/patches/Attic/patch-aj 2008/06/24 08:21:04 1.2
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-aj,v 1.1 2008/04/21 01:09:51 bjs Exp $ 1$NetBSD: patch-aj,v 1.2 2008/06/24 08:21:04 bjs Exp $
2 2
3--- config.mak.in.orig 2008-04-08 03:10:01.000000000 -0400 3--- config.mak.in.orig 2008-06-18 18:49:49.000000000 -0400
4+++ config.mak.in 4+++ config.mak.in
5@@ -11,7 +11,7 @@ TCLTK_PATH = @TCLTK_PATH@ 5@@ -11,7 +11,7 @@ TCLTK_PATH = @TCLTK_PATH@
6 prefix = @prefix@ 6 prefix = @prefix@
7 exec_prefix = @exec_prefix@ 7 exec_prefix = @exec_prefix@
8 bindir = @bindir@ 8 bindir = @bindir@
9-#gitexecdir = @libexecdir@/git-core/ 9-#gitexecdir = @libexecdir@/git-core/
10+gitexecdir = @libexecdir@/git-core/ 10+gitexecdir = @libexecdir@/git-core/
11 datarootdir = @datarootdir@ 11 datarootdir = @datarootdir@
12 template_dir = @datadir@/git-core/templates/ 12 template_dir = @datadir@/git-core/templates/
13  13

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

--- pkgsrc/devel/scmgit-docs/Attic/PLIST 2008/04/21 01:09:51 1.3
+++ pkgsrc/devel/scmgit-docs/Attic/PLIST 2008/06/24 08:21:04 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2008/04/21 01:09:51 bjs Exp $ 1@comment $NetBSD: PLIST,v 1.4 2008/06/24 08:21:04 bjs 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
@@ -119,19 +119,27 @@ man/man1/git-tar-tree.1 @@ -119,19 +119,27 @@ man/man1/git-tar-tree.1
119man/man1/git-unpack-file.1 119man/man1/git-unpack-file.1
120man/man1/git-unpack-objects.1 120man/man1/git-unpack-objects.1
121man/man1/git-update-index.1 121man/man1/git-update-index.1
122man/man1/git-update-ref.1 122man/man1/git-update-ref.1
123man/man1/git-update-server-info.1 123man/man1/git-update-server-info.1
124man/man1/git-upload-archive.1 124man/man1/git-upload-archive.1
125man/man1/git-upload-pack.1 125man/man1/git-upload-pack.1
126man/man1/git-var.1 126man/man1/git-var.1
127man/man1/git-verify-pack.1 127man/man1/git-verify-pack.1
128man/man1/git-verify-tag.1 128man/man1/git-verify-tag.1
129man/man1/git-web--browse.1 129man/man1/git-web--browse.1
130man/man1/git-whatchanged.1 130man/man1/git-whatchanged.1
131man/man1/git-write-tree.1 131man/man1/git-write-tree.1
 132man/man1/git.1
132man/man1/gitk.1 133man/man1/gitk.1
133man/man5/gitattributes.5 134man/man5/gitattributes.5
134man/man5/gitcli.5 135man/man5/githooks.5
135man/man5/gitignore.5 136man/man5/gitignore.5
136man/man5/gitmodules.5 137man/man5/gitmodules.5
137man/man7/git.7 138man/man5/gitrepository-layout.5
 139man/man7/gitcli.7
 140man/man7/gitcore-tutorial.7
 141man/man7/gitcvs-migration.7
 142man/man7/gitdiffcore.7
 143man/man7/gitglossary.7
 144man/man7/gittutorial-2.7
 145man/man7/gittutorial.7