9 lines
87 B
Bash
Executable file
9 lines
87 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
git add --all
|
|
git commit --amend
|
|
git show
|
|
git push -f
|
|
git status
|