Revision 327b3f8459a316aa5c27a8784f0f504122fce60e authored by Junio C Hamano on 08 August 2016, 21:21:32 UTC, committed by Junio C Hamano on 08 August 2016, 21:21:32 UTC
"git blame file" allowed the lineage of lines in the uncommitted,
unadded contents of "file" to be inspected, but it refused when
"file" did not appear in the current commit.  When "file" was
created by renaming an existing file (but the change has not been
committed), this restriction was unnecessarily tight.

* mh/blame-worktree:
  t/t8003-blame-corner-cases.sh: Use here documents
  blame: allow to blame paths freshly added to the index
2 parent s 08df31e + c66b470
Raw File
test-documentation.sh
#!/bin/sh
#
# Perform sanity checks on documentation and build it.
#

set -e

make check-builtins
make check-docs
make doc

test -s Documentation/git.html
test -s Documentation/git.xml
test -s Documentation/git.1
back to top