Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gerrited/9ab37487ef0750048440f7be00672136 to your computer and use it in GitHub Desktop.
Save gerrited/9ab37487ef0750048440f7be00672136 to your computer and use it in GitHub Desktop.
git add, commit and push - powershell function for notepad $PROFILE
function acp {
param([string]$mes = "Small changes")
git add .
git commit -m $mes
git push
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment