Forked from gerrit-amagno/gist:c18c923f280c2886a34bc6572a9e2cac
Created
February 26, 2024 10:10
-
-
Save gerrited/9ab37487ef0750048440f7be00672136 to your computer and use it in GitHub Desktop.
git add, commit and push - powershell function for notepad $PROFILE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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