11 lines
126 B
Text
11 lines
126 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
git config --global core.editor "nano"
|
||
|
git add --all
|
||
|
git commit --amend
|
||
|
git show
|
||
|
git push -f
|
||
|
git status
|