commit | 7ae3df8c0aa3b7337ae9ac7b6184ac05985bf996 | [log] [tgz] |
---|---|---|
author | Matthias Lederhofer <matled@gmx.net> | Sun Jun 03 16:48:16 2007 +0200 |
committer | Junio C Hamano <gitster@pobox.com> | Wed Jun 06 16:07:53 2007 -0700 |
tree | 7a0a38202a5dec2f1e509f624eb86b5979f63e84 | |
parent | 892c41b98ae2e6baf3aa13901cb10db9ac67d2f3 [diff] |
Use new semantics of is_bare/inside_git_dir/inside_work_tree Up to now to check for a working tree this was used: !is_bare && !inside_git_dir (the check for bare is redundant because is_inside_git_dir returned already 1 for bare repositories). Now the check is: inside_work_tree && !inside_git_dir Signed-off-by: Matthias Lederhofer <matled@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>