10 lines
144 B
Bash
Executable file
10 lines
144 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
[ -n $"{1}" ] && git config --global user.email "${1}"
|
|
git add --all
|
|
git commit --all -m fix
|
|
git push
|
|
git show
|
|
git status
|