I want a simple alias I can run to
git add -A
git commit -m "$parm1"
git push
that's all. I'd take any help at this rate. Powershell is well horrible compared to Linux terminals but I'm trying to learn.
function gitup {
params(
[string] $msg
)
git add -A
git commit -m " $msg "
git push
}