Can I embed the following bash shell code:
for name in $(git diff --name-only $1); do git difftool $1 $name & done
directly into the creation of a git alias:
git config --global alias.diffall ***my-bash-code-here***
This leads on from my previous question/answer on SO, where I put the code into a .sh file and then aliased to the file:
git config --global alias.diffall '!sh diffall.sh'
But in the never-ending quest for simplicity, there's gotta be a way to skip the file and insert code directly into the alias? I can't figure out the format...