I have this alias for git setup which is working.
git config alias.migrations 'log'
But when I add a parameter its not working correctly.
git config alias.migrations 'log -- **/Migrations/'
Any ideas?
So when I do
git log -- **/Migrations/
I get all logs showing changes from Migrations folder.
But when I use the alias, I dot see any output, neither does it give any error.
The image above also shows the config file inside of .git folder.