I need help getting git extensions to run with msysgit. I have had bad luck with extensions git-tfs and git-fetchall, in both cases it is the same problem. The addon will
Warning, starting with git 2.0.X/2.1 (Q3 2014), git diffall
will always return "command not found
": it has been removed.
See commit 502b0a1 by Jonathan Nieder (jrn) (with the assistance of Tim Henigan (thenigan)):
contrib
: remove git-diffall
The functionality of the "
git diffall
" script incontrib/
was incorporated into "git difftool
" when the --dir-diff option was added in v1.7.11 (ca. June, 2012).
Oncedifftool
learned those features, thediffall
script became obsolete.The only difference in behavior is that when comparing to the working tree,
difftool
copies any files modified by the user back to the working tree when the diff tool exits.
"git diffall
" required the--copy-back
option to do the same.
All otherdiffall
options have the same meaning indifftool
.Make life easier for people choosing a tool to use by removing the old
diffall
script. A pointer in the release notes should be enough to help current users migrate.