11 lines
137 B
Text
11 lines
137 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
[ -n $"{1}" ] && git config --global user.email "${1}"
|
||
|
git add --all
|
||
|
git commit --all
|
||
|
git push
|
||
|
git show
|
||
|
git status
|