File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,15 @@ alias gaa='git add .'
192192
alias gc='git commit -m '
193193
alias gp='git push'
194194
alias gpm='git push origin master'
195+
196+
# create YOUR own git workflows
197+
function [functionName]() {
198+
# commands to execute when function is called
199+
# if there are more than one commands, use && between them
200+
# to use the first output from the terminal, use "${1}"
201+
}
202+
203+
195204
```
196205

197206
### 🚀 Usage

0 commit comments

Comments
 (0)