9 lines
68 B
Bash
9 lines
68 B
Bash
#!/bin/bash
|
|
|
|
acp() {
|
|
git add .
|
|
git commit -m "$@"
|
|
git push
|
|
}
|
|
|