has_sha1_file: don't bother if we are not in a repository
authorJonathan Nieder <jrnieder@gmail.com>
Tue, 11 Apr 2017 22:47:13 +0000 (15:47 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 14 Apr 2017 01:33:11 +0000 (18:33 -0700)
commit3e8b7d3c77c464b29f7f3e0627ca7354f7de433a
tree0baf768667701ea44eb67bd58d512ac82cf496fa
parent3e98919a188e36f34c1a20e23ecf2ff1f5da75c9
has_sha1_file: don't bother if we are not in a repository

Most callers to this function already require that they are in a
git repository, but there is an exception: "git apply" uses
has_sha1_file to avoid work if the result of applying a binary
patch is already present in the repository. When run outside any
repository, this produces an error:

 fatal: BUG: setup_git_env called without repository

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c