Created
March 30, 2022 21:03
-
-
Save mateusjatenee/530b05fe4fdea1f10566411ee09c5e67 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 c { | |
git add --all | |
git commit -m $1 | |
} | |
function p { | |
git add --all | |
git commit -m $1 | |
branch=`git branch | grep "*"` | |
git push origin ${branch/* /} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment