For some reason I have to run git gc --prune=now
almost every day before I run a git pull
so I wanted to create a git pp
alias that helps me run those two commands
I added this to the users .gitconfig file
[alias]
pp = 'gc --prune=now && pull'
but when I try to run it I get what it seems a sintax error, how do I fix this on windows 10
I have read this
but I dont see my mistake