10 lines
87 B
Text
10 lines
87 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
git add --all
|
||
|
git commit --amend
|
||
|
git show
|
||
|
git push -f
|
||
|
git status
|