12 lines
95 B
Bash
Executable File
12 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
acp() {
|
|
git add .
|
|
git commit -m "$@"
|
|
git push
|
|
}
|
|
|
|
co() {
|
|
git checkout $1
|
|
}
|