I would like to be able to type into my cmd or powershell this command and it automatically do a commit with a message like this
commit "Finished amazing feature"
and it would execute this
git add .; git commit -m "Finished amazing feature"; git push
But when I tried to add this alias it is giving me some error and not working, what am I doing wrong?
doskey commit=git add .; git commit -m "$1"; git push
error: switch `m' requires a value
git -m $1?git: 'add.;' is not a git command;, it is&incmdand$Tindoskeymacros…