Skip to content

Instantly share code, notes, and snippets.

@gerrit-amagno
Created February 26, 2024 10:02
Show Gist options
  • Save gerrit-amagno/c18c923f280c2886a34bc6572a9e2cac to your computer and use it in GitHub Desktop.
Save gerrit-amagno/c18c923f280c2886a34bc6572a9e2cac 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