-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgitprompt.sh
304 lines (264 loc) · 6.31 KB
/
gitprompt.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
#!/bin/bash
# gitprompt.sh by Christer Enfors -- http://github.com/enfors/gitprompt
GITPROMPT_VERSION="1.2.1"
RC_FILE=~/.gitpromptrc
RED="\033[0;31m"
GREEN="\033[0;32m"
YELLOW="\033[0;33m"
BLUE="\033[0;34m"
MAGENTA="\033[0;35m"
CYAN="\033[0;36m"
RESET="\033[0m"
WHITE=$RESET
BLACK=$RESET
GIT_EXIT_STATUS_COLOR=$RED
GIT_TIME_COLOR=$RESET
GIT_BRACKET_COLOR=$BLUE
GIT_AT_COLOR=$RESET
GIT_USERNAME_COLOR=$GREEN
GIT_HOSTNAME_COLOR=$GREEN
GIT_HOSTALIAS_COLOR=$RESET
GIT_COLON_COLOR=$RESET
GIT_PWD_COLOR=$YELLOW
GIT_BRANCH_COLOR=$RESET
GIT_ADDED_COLOR=$YELLOW
GIT_UNTRACKED_COLOR=$CYAN
GIT_MODIFIED_COLOR=$BLUE
GIT_DELETED_COLOR=$RED
GIT_RENAMED_COLOR=$MAGENTA
GIT_COPIED_COLOR=$MAGENTA
GIT_UNMERGED_COLOR=$MAGENTA
#
# INIT FUNCTIONS
#
function Init
{
EchoGreeting
if [ ! -e $RC_FILE ]; then
MkConfigFile
echo "It seems like this is your first time using GitPrompt."
echo "GitPrompt makes the prompt more informative, especially "
echo "(but not only) if you use git."
else
ReadConfigFile
fi
SetEditor
}
function EchoGreeting
{
echo "[GitPrompt version $GITPROMPT_VERSION by Christer Enfors enabled." \
"Type 'GPHelp' for help.]"
}
function SetEditor
{
if [ -z "$EDITOR" ]; then
if [ -n "$VISUAL" ]; then
EDITOR="$VISUAL"
else
if [ $(which nano) ]; then
EDITOR="nano"
else
EDITOR="vi"
fi
fi
fi
}
#
# USER COMMAND FUNCTIONS
#
function GPHelp
{
cat <<EOF
GitPrompt help
==============
GitPrompt is a script which configures your prompt to be a little more
helpful; see https://www.github.com/enfors/gitprompt for details about
what it does.
GitPrompt commands
==================
GPConfig - customize the colors of the prompt
GPReset - reset the colors to the default
EOF
}
function GPConfig
{
$EDITOR $RC_FILE
if [ $? -ne 0 ]; then
echo "Editing config file failed; aborting." >&2
return 1
fi
ReadConfigFile
SetPrompt
}
function GPReset
{
MkConfigFile
ReadConfigFile
SetPrompt
}
#
# CONFIG FILE FUNCTIONS
#
function MkConfigFile
{
if [ -e "$RC_FILE" ]; then
echo -n "Do you want to reset your GitPrompt config? [y/N]: "
read answer
if [ "$answer" != "y" ]; then
echo "Very well - it will be left as it is."
return 0
fi
fi
cat <<EOF >$RC_FILE
# This is the config file for GitPrompt.
#
# Color key:
#
# ,-----+------ GIT_BRACKET_COLOR -----------------+-------.
# | | | |
# | | GIT_AT_COLOR | |
# | | | | |
# | | | GIT_COLON_COLOR | |
# | | | | | |
# V V v V V V
# [02:44] enfors @ shodan: ~/devel/shell/gitprompt [develop]: Modified
# ^ ^ ^ ^ ^
# | | | | |
# | | GIT_HOSTNAME_COLOR GIT_PWD_COLOR GIT_BRANCH_COLOR
# | |
# | GIT_USERNAME_COLOR
# |
# GIT_TIME_COLOR
GIT_EXIT_STATUS_COLOR=\$RED
GIT_TIME_COLOR=\$RESET
GIT_BRACKET_COLOR=\$BLUE
GIT_AT_COLOR=\$RESET
GIT_USERNAME_COLOR=\$GREEN
GIT_HOSTNAME_COLOR=\$GREEN
GIT_HOSTALIAS_COLOR=\$RESET
GIT_COLON_COLOR=\$RESET
GIT_PWD_COLOR=\$YELLOW
GIT_BRANCH_COLOR=\$RESET
GIT_ADDED_COLOR=\$YELLOW
GIT_UNTRACKED_COLOR=\$CYAN
GIT_MODIFIED_COLOR=\$BLUE
GIT_DELETED_COLOR=\$RED
GIT_RENAMED_COLOR=\$MAGENTA
GIT_COPIED_COLOR=\$MAGENTA
GIT_UNMERGED_COLOR=\$MAGENTA
EOF
}
function ReadConfigFile
{
. $RC_FILE
}
# Display the exit status of the previous command, if non-zero.
function ExitStatus
{
gs_exitstatus=$?
if [ $gs_exitstatus -ne 0 ]; then
echo -en "${GIT_EXIT_STATUS_COLOR}Exit status: $gs_exitstatus $RESET"
fi
}
function SetHostAlias
{
if [ -n "$HOSTALIAS" ]; then
hostalias="$GIT_BRACKET_COLOR[$GIT_HOSTALIAS_COLOR$HOSTALIAS$GIT_BRACKET_COLOR]$RESET"
else
hostalias=""
fi
}
function SetPrompt
{
SetHostAlias
export PS1="\$(ExitStatus)$GIT_BRACKET_COLOR[$GIT_TIME_COLOR\$(date +%H:%M)$GIT_BRACKET_COLOR]$RESET $GIT_USERNAME_COLOR\u$GIT_AT_COLOR @ $GIT_HOSTNAME_COLOR\h$RESET$hostalias: $GIT_PWD_COLOR\w$RESET \$(GitStatus)\n\$ "
}
# This is called before printing the each word in a list. The words should be
# comma separated, so it prints a comma unless the word it's supposed to print
# next is the FIRST word.
function MaybeEchoComma
{
if [ ! -z "$gs_first" ]; then
gs_first=
else
echo -n ", "
fi
}
# Show the git commit status.
function CommitStatus
{
unset added
git status -s --porcelain | while read -r line; do
if [[ $line == A* ]]; then
if [ -z "$added" ]; then
added=1
MaybeEchoComma
echo -en "${GIT_ADDED_COLOR}Added${RESET}"
fi
elif [[ $line == \?\?* ]]; then
if [ -z "$untracked" ]; then
untracked=1
MaybeEchoComma
echo -en "${GIT_UNTRACKED_COLOR}Untracked${RESET}"
fi
elif [[ $line == M* ]]; then
if [ -z "$modified" ]; then
modified=1
MaybeEchoComma
echo -en "${GIT_MODIFIED_COLOR}Modified${RESET}"
fi
elif [[ $line == D* ]]; then
if [ -z "$deleted" ]; then
deleted=1
MaybeEchoComma
echo -en "${GIT_DELETED_COLOR}Deleted${RESET}"
fi
elif [[ $line == R* ]]; then
if [ -z "$renamed" ]; then
renamed=1
MaybeEchoComma
echo -en "${GIT_RENAMED_COLOR}Renamed${RESET}"
fi
elif [[ $line == C* ]]; then
if [ -z "$copied" ]; then
copied=1
echo -en ", ${GIT_COPIED_COLOR}Copied${RESET}"
fi
elif [[ $line == U* ]]; then
if [ -z "$unmerged" ]; then
copied=1
MaybeEchoComma
echo -en "${GIT_UNMERGED_COLOR}Updated-but-unmerged${RESET}"
fi
else
echo "UNKNOWN STATUS"
return 1
fi
done
return 0
}
function GitStatus
{
gs_first=1
# If we're inside a .git directory, we can't find the branch / commit status.
if pwd | grep -q /.git; then
return 0
fi
if git rev-parse --git-dir >/dev/null 2>&1; then
gs_branch=$(git branch | grep "^* " | cut -c 3-)
gs_gitstatus=$(CommitStatus)
if [ $? -eq 0 ]; then
if [ -z "$gs_gitstatus" ]; then
echo -e "$GIT_BRACKET_COLOR[$GIT_BRANCH_COLOR$gs_branch$GIT_BRACKET_COLOR]$RESET: ${GREEN}Up-to-date${RESET}"
else
echo -e "$GIT_BRACKET_COLOR[$GIT_BRANCH_COLOR$gs_branch$GIT_BRACKET_COLOR]$RESET: $gs_gitstatus"
fi
fi
fi
}
function Main
{
Init
SetPrompt
}
Main