mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
38 lines
715 B
Bash
Executable file
38 lines
715 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
back="^"
|
|
|
|
case "$1" in
|
|
-h)
|
|
cat << EOL
|
|
This will erase any changes since your last commit.
|
|
If you want to get help info, run "git undo --help" instead.
|
|
Do you want to continue? [yN]"
|
|
EOL
|
|
read -r res
|
|
case "${res}" in
|
|
"Y" | "y")
|
|
test $2 -gt 1 > /dev/null 2>&1 && back="~$2"
|
|
git reset --hard HEAD$back
|
|
exit $?
|
|
;;
|
|
* )
|
|
exit 0
|
|
;;
|
|
esac
|
|
;;
|
|
--hard)
|
|
test $2 -gt 1 > /dev/null 2>&1 && back="~$2"
|
|
git reset --hard HEAD$back && exit 0;
|
|
;;
|
|
-s|--soft)
|
|
test $2 -gt 1 > /dev/null 2>&1 && back="~$2"
|
|
;;
|
|
*)
|
|
test $1 -gt 1 > /dev/null 2>&1 && back="~$1"
|
|
;;
|
|
esac
|
|
|
|
git reset --soft HEAD$back
|
|
git reset
|