I just see a git config command as below:
git config --global alias.out !"git fetch; git cherry origin/HEAD -v"
what does it mean? Is it equal to this:
git config --global alias.out '!git fetch; git cherry origin/HEAD -v',
I am confused with the exclamation mark,any help will be appreciated.
From the git-config manual:
If the alias expansion is prefixed with an exclamation point, it will be treated as a shell command.
2.1m questions
2.1m answers
60 comments
57.0k users