-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.sh
114 lines (97 loc) · 3.52 KB
/
reset.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env bash
### Script for moving git pointers
# Read README.md to get more information how to use it
# Use this script only with gitbasher
### Main function
# $1: mode
# empty: reset last commit (git reset HEAD^ --mixed)
# soft: reset last commit, but remain all fiels staged (git reset HEAD^ --soft)
# undo: undo last action (git reset HEAD@{1})
# interactive: select a commit to reset
# ref: select a HEAD reference to reset
function reset_script {
case "$1" in
soft|s) soft="true";;
undo|u) undo="true";;
interactive|i) interactive="true";;
ref|r)
ref="true"
interactive="true"
;;
help|h) help="true";;
*)
wrong_mode "reset" $1
esac
header="GIT RESET"
if [ -n "${ref}" ]; then
header="$header REFERENCE"
elif [ -n "${undo}" ]; then
header="$header UNDO"
elif [ -n "${soft}" ]; then
header="$header --soft"
elif [ -n "${help}" ]; then
header="$header"
else
header="$header --mixed"
fi
echo -e "${YELLOW}${header}${ENDCOLOR}"
echo
if [ -n "$help" ]; then
echo -e "usage: ${YELLOW}gitb reset <mode>${ENDCOLOR}"
echo
echo -e "${YELLOW}Available modes${ENDCOLOR}"
echo -e "<empty>\t\tReset last commit (git reset HEAD^ --mixed)"
echo -e "soft|s\t\tReset last commit, but remain all fiels staged (git reset HEAD^ --soft)"
echo -e "undo|u\t\tUndo last commit reset (git reset HEAD@{1})"
echo -e "interactive|i\tSelect a commit to reset"
echo -e "ref|r\t\tSelect a HEAD reference to reset"
echo -e "help|h\t\tShow this help"
exit
fi
echo $soft
cancelled_commit=$(git log -n 1 --pretty="%s | ${YELLOW}%h${ENDCOLOR} | ${CYAN}%cd${ENDCOLOR} (${GREEN}%cr${ENDCOLOR})")
cancelled_action=$(git reflog -n 1 --pretty="%gs | ${YELLOW}%h${ENDCOLOR} | ${CYAN}%cd${ENDCOLOR} (${GREEN}%cr${ENDCOLOR})")
if [ -n "$interactive" ]; then
if [ -n "$ref" ]; then
echo -e "${YELLOW}Select a ref to move into:${ENDCOLOR}"
ref_list 31
echo "0. Exit..."
echo
printf "Enter ref number: "
choose "${refs_hash[@]}"
commit_hash=$choice_result
echo
else
echo -e "${YELLOW}Select a commit to reset:${ENDCOLOR}"
choose_commit 9
fi
fi
move_ref="HEAD^"
if [ -n "$undo" ]; then
move_ref="HEAD@{1}"
elif [ -n "$commit_hash" ]; then
move_ref=$commit_hash
fi
args="--mixed"
if [ -n "$soft" ]; then
args="--soft"
fi
reset_output=$(git reset $args $move_ref 2>&1)
check_code $? "$reset_output" "reset"
new_commit=$(git log -n 1 --pretty="%s | ${YELLOW}%h${ENDCOLOR} | ${CYAN}%cd${ENDCOLOR} (${GREEN}%cr${ENDCOLOR})")
new_action=$(git reflog -n 1 --pretty="%gs | ${YELLOW}%h${ENDCOLOR} | ${CYAN}%cd${ENDCOLOR} (${GREEN}%cr${ENDCOLOR})")
msg="${GREEN}New last commit:${ENDCOLOR}|${new_commit}"
if [ -n "$ref" ] || [ -n "$undo" ]; then
msg="${msg}\n${GREEN}New last action:${ENDCOLOR}|${new_action}"
fi
msg="${msg}\n${RED}Cancelled commit:${ENDCOLOR}|${cancelled_commit}"
if [ -n "$ref" ] || [ -n "$undo" ]; then
msg="${msg}\n${RED}Cancelled action:${ENDCOLOR}|${cancelled_action}"
fi
msg=$(echo -e "$msg" | column -ts'|')
echo -e "$msg"
echo
echo -e "${YELLOW}Status after reset${ENDCOLOR}"
git_status
exit
}