Sync with 1.6.5.3
authorJunio C Hamano <gitster@pobox.com>
Mon, 16 Nov 2009 08:06:23 +0000 (00:06 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 16 Nov 2009 08:06:30 +0000 (00:06 -0800)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1  2 
Documentation/git.txt
Makefile
diff --combined Documentation/git.txt
index 0f536793dfc1929f661029b61a1057d2b7a95abc,5084d27a25d9c71de50bc5578b1de331a005acd9..8e577cc4fe2fd445ef238efc812d12b58156fec4
@@@ -10,7 -10,7 +10,7 @@@ SYNOPSI
  --------
  [verse]
  'git' [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
 -    [-p|--paginate|--no-pager]
 +    [-p|--paginate|--no-pager] [--no-replace-objects]
      [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
      [--help] COMMAND [ARGS]
  
@@@ -43,9 -43,10 +43,10 @@@ unreleased) version of git, that is ava
  branch of the `git.git` repository.
  Documentation for older releases are available here:
  
- * link:v1.6.5.2/git.html[documentation for release 1.6.5.2]
+ * link:v1.6.5.3/git.html[documentation for release 1.6.5.3]
  
  * release notes for
+   link:RelNotes-1.6.5.3.txt[1.6.5.3],
    link:RelNotes-1.6.5.2.txt[1.6.5.2],
    link:RelNotes-1.6.5.1.txt[1.6.5.1],
    link:RelNotes-1.6.5.txt[1.6.5].
@@@ -239,10 -240,6 +240,10 @@@ help ...`
        environment is not set, it is set to the current working
        directory.
  
 +--no-replace-objects::
 +      Do not use replacement refs to replace git objects. See
 +      linkgit:git-replace[1] for more information.
 +
  
  FURTHER DOCUMENTATION
  ---------------------
diff --combined Makefile
index 5d5976f94faa1b981f5c8ad9056ab4c5cc9dd3a6,856ba098b8a6383b81fd7d7b716fae9fc39c7f85..35f5294cf0e246affc1c59cbc0bfdf91a50da18e
+++ b/Makefile
@@@ -457,7 -457,6 +457,7 @@@ LIB_H += sideband.
  LIB_H += sigchain.h
  LIB_H += strbuf.h
  LIB_H += string-list.h
 +LIB_H += submodule.h
  LIB_H += tag.h
  LIB_H += transport.h
  LIB_H += tree.h
@@@ -556,7 -555,6 +556,7 @@@ LIB_OBJS += sideband.
  LIB_OBJS += sigchain.o
  LIB_OBJS += strbuf.o
  LIB_OBJS += string-list.o
 +LIB_OBJS += submodule.o
  LIB_OBJS += symlinks.o
  LIB_OBJS += tag.o
  LIB_OBJS += trace.o
@@@ -1806,7 -1804,10 +1806,10 @@@ dist: git.spec git-archive$(X) configur
        gzip -f -9 $(GIT_TARNAME).tar
  
  rpm: dist
-       $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
+       $(RPMBUILD) \
+               --define "_source_filedigest_algorithm md5" \
+               --define "_binary_filedigest_algorithm md5" \
+               -ta $(GIT_TARNAME).tar.gz
  
  htmldocs = git-htmldocs-$(GIT_VERSION)
  manpages = git-manpages-$(GIT_VERSION)