-
Notifications
You must be signed in to change notification settings - Fork 73
/
mgitstatus
executable file
·363 lines (322 loc) · 13.2 KB
/
mgitstatus
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!/bin/sh
# MIT license
VERSION="2.3"
DEBUG=${MG_DEBUG:-0}
usage () {
cat << EOF >&2
Usage: $0 [--version] [-w] [-e] [-f] [--throttle SEC] [-c] [-d/--depth=2] [--flatten] [--no-X] [DIR [DIR]...]
mgitstatus shows uncommitted, untracked and unpushed changes in multiple Git
repositories. By default, mgitstatus scans two directories deep. This can be
changed with the -d (--depth) option. If DEPTH is 0, the scan is infinitely
deep.
-b Show currently checked out branch
-c Force color output (preserve colors when using pipes)
-d, --depth=2 Scan this many directories deep
-e Exclude repos that are 'ok'
-f Do a 'git fetch' on each repo (slow for many repos)
-h, --help Show this help message
--flatten Show only one status per line
--no-depth Do not recurse into directories (incompatible with -d)
--throttle SEC Wait SEC seconds between each 'git fetch' (-f option)
--version Show version
-w Warn about dirs that are not Git repositories
You can limit output with the following options:
--no-push
--no-pull
--no-upstream
--no-uncommitted
--no-untracked
--no-stashes
--no-ok (same as -e)
EOF
}
# Handle commandline options
WARN_NOT_REPO=0
EXCLUDE_OK=0
DO_FETCH=0
FORCE_COLOR=0
FLATTEN=0
NO_PUSH=0
NO_PULL=0
NO_UPSTREAM=0
NO_UNCOMMITTED=0
NO_UNTRACKED=0
NO_STASHES=0
NO_DEPTH=0
THROTTLE=0
DEPTH=2
SHOW_CUR_BRANCH=0
while [ -n "$1" ]; do
# Stop reading when we've run out of options.
[ "$(printf "%s" "$1" | cut -c 1)" != "-" ] && break
if [ "$1" = "-b" ]; then
SHOW_CUR_BRANCH=1
fi
if [ "$1" = "-c" ]; then
FORCE_COLOR=1
fi
if [ "$1" = "-d" ] || [ "$1" = "--depth" ]; then
DEPTH="$2"
echo "$DEPTH" | grep -E "^[0-9]+$" > /dev/null 2>&1
IS_NUM="$?"
if [ "$IS_NUM" -ne 0 ]; then
echo "Invalid value for 'depth' (must be a number): $DEPTH" >&2
exit 1
fi
# Shift one extra param
shift
fi
if [ "$1" = "-e" ]; then
EXCLUDE_OK=1
fi
if [ "$1" = "-f" ]; then
DO_FETCH=1
fi
if [ "$1" = "--flatten" ]; then
FLATTEN=1
fi
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
usage
exit 1
fi
if [ "$1" = "--no-push" ]; then
NO_PUSH=1
fi
if [ "$1" = "--no-pull" ]; then
NO_PULL=1
fi
if [ "$1" = "--no-upstream" ]; then
NO_UPSTREAM=1
fi
if [ "$1" = "--no-uncommitted" ]; then
NO_UNCOMMITTED=1
fi
if [ "$1" = "--no-untracked" ]; then
NO_UNTRACKED=1
fi
if [ "$1" = "--no-stashes" ]; then
NO_STASHES=1
fi
if [ "$1" = "--no-ok" ]; then
# Same as -e, but -e violates the principle of least astonishment.
EXCLUDE_OK=1
fi
if [ "$1" = "--no-depth" ]; then
# Same as -e, but -e violates the principle of least astonishment.
NO_DEPTH=1
fi
if [ "$1" = "--throttle" ]; then
THROTTLE="$2"
echo "$THROTTLE" | grep -E "^[0-9]+$" > /dev/null 2>&1
IS_NUM="$?"
if [ "$IS_NUM" -ne 0 ]; then
echo "Invalid value for 'throttle' (must be a number): $THROTTLE" >&2
exit 1
fi
# Shift one extra param
shift
fi
if [ "$1" = "--version" ]; then
echo "v$VERSION"
exit 0
fi
if [ "$1" = "-w" ]; then
WARN_NOT_REPO=1
fi
shift
done
if [ -t 1 ] || [ "$FORCE_COLOR" -eq 1 ]; then
# Our output is not being redirected, so we can use colors.
C_RED="\033[1;31m"
C_GREEN="\033[1;32m"
C_YELLOW="\033[1;33m"
C_BLUE="\033[1;34m"
C_PURPLE="\033[1;35m"
C_CYAN="\033[1;36m"
C_RESET="\033[0;10m"
fi
C_OK="$C_GREEN"
C_LOCKED="$C_RED"
C_NEEDS_PUSH="$C_YELLOW"
C_NEEDS_PULL="$C_BLUE"
C_NEEDS_COMMIT="$C_RED"
C_NEEDS_UPSTREAM="$C_PURPLE"
C_UNTRACKED="$C_CYAN"
C_STASHES="$C_YELLOW"
C_UNSAFE="$C_PURPLE"
# Get current username so we can check .git dir ownership.
ID="$(id -n -u)"
# Find all .git dirs, up to DEPTH levels deep. If DEPTH is 0, the scan is
# infinitely deep
FIND_OPTS=""
if [ "$DEPTH" -ne 0 ]; then
FIND_OPTS="$FIND_OPTS -maxdepth $DEPTH"
fi
if [ "$NO_DEPTH" -eq 1 ]; then
# Do not recurse at all. Really, this should have been the '-d 0' option,
# but that's already used for infinite recursion, and we don't want to
# break backwards compatibility.
FIND_OPTS="$FIND_OPTS -maxdepth 0"
fi
# Go through positional arguments (DIRs) or '.' if no argumnets are given
for DIR in "${@:-"."}"; do
# We *want* to expand parameters, so disable shellcheck for this error:
# shellcheck disable=SC2086
find -L "$DIR" $FIND_OPTS -type d | while read -r PROJ_DIR
do
GIT_DIR="$PROJ_DIR/.git"
GIT_CONF="$PROJ_DIR/.git/config"
# Check if the repo is safe (https://github.blog/2022-04-12-git-security-vulnerability-announced/)
if [ -d "$GIT_DIR" ]; then
GIT_DIR_OWNER="$(ls -ld "$GIT_DIR" | awk 'NR==1 {print $3}')"
if [ "$ID" != "$GIT_DIR_OWNER" ]; then
printf "${PROJ_DIR}: ${C_UNSAFE}Unsafe ownership, owned by someone else. Skipping.${C_RESET}\n"
continue
fi
fi
# Check git config for this project to see if we should ignore this repo.
IGNORE=$(git config -f "$GIT_CONF" --bool mgitstatus.ignore)
if [ "$IGNORE" = "true" ]; then
continue
fi
# If this dir is not a repo, and WARN_NOT_REPO is 1, tell the user.
if [ ! -d "$GIT_DIR" ]; then
if [ "$WARN_NOT_REPO" -eq 1 ] && [ "$PROJ_DIR" != "." ]; then
printf "${PROJ_DIR}: not a git repo\n"
fi
continue
fi
[ $DEBUG -eq 1 ] && echo "${PROJ_DIR}"
# Check if repo is locked
if [ -f "$GIT_DIR/index.lock" ]; then
printf "${PROJ_DIR}: ${C_LOCKED}Locked. Skipping.${C_RESET}\n"
continue
fi
# Do a 'git fetch' if requested
if [ "$DO_FETCH" -eq 1 ]; then
git --work-tree "$(dirname "$GIT_DIR")" --git-dir "$GIT_DIR" fetch -q >/dev/null
fi
# Refresh the index, or we might get wrong results.
git --work-tree "$(dirname "$GIT_DIR")" --git-dir "$GIT_DIR" update-index -q --refresh >/dev/null 2>&1
# Get current branch, if "-b" is specified
if [ "$SHOW_CUR_BRANCH" -eq 1 ]; then
CUR_BRANCH=" ($(git --git-dir "$GIT_DIR" rev-parse --abbrev-ref HEAD))"
else
CUR_BRANCH=""
fi
# Find all remote branches that have been checked out and figure out if
# they need a push or pull. We do this with various tests and put the name
# of the branches in NEEDS_XXXX, seperated by newlines. After we're done,
# we remove duplicates from NEEDS_XXX.
NEEDS_PUSH_BRANCHES=""
NEEDS_PULL_BRANCHES=""
NEEDS_UPSTREAM_BRANCHES=""
for REF_HEAD in $(cd "$GIT_DIR/refs/heads" && find . -type 'f' | sed "s/^\.\///"); do
# Check if this branch is tracking an upstream (local/remote branch)
UPSTREAM=$(git --git-dir "$GIT_DIR" rev-parse --abbrev-ref --symbolic-full-name "$REF_HEAD@{u}" 2>/dev/null)
EXIT_CODE="$?"
if [ "$EXIT_CODE" -eq 0 ]; then
# Branch is tracking a remote branch. Find out how much behind /
# ahead it is of that remote branch.
CNT_AHEAD_BEHIND=$(git --git-dir "$GIT_DIR" rev-list --left-right --count "$REF_HEAD...$UPSTREAM")
CNT_AHEAD=$(echo "$CNT_AHEAD_BEHIND" | awk '{ print $1 }')
CNT_BEHIND=$(echo "$CNT_AHEAD_BEHIND" | awk '{ print $2 }')
[ $DEBUG -eq 1 ] && echo "CNT_AHEAD_BEHIND: $CNT_AHEAD_BEHIND"
[ $DEBUG -eq 1 ] && echo "CNT_AHEAD: $CNT_AHEAD"
[ $DEBUG -eq 1 ] && echo "CNT_BEHIND: $CNT_BEHIND"
if [ "$CNT_AHEAD" -gt 0 ]; then
NEEDS_PUSH_BRANCHES="${NEEDS_PUSH_BRANCHES}\n$REF_HEAD"
fi
if [ "$CNT_BEHIND" -gt 0 ]; then
NEEDS_PULL_BRANCHES="${NEEDS_PULL_BRANCHES}\n$REF_HEAD"
fi
# Check if this branch is a branch off another branch. and if it needs
# to be updated.
REV_LOCAL=$(git --git-dir "$GIT_DIR" rev-parse --verify "$REF_HEAD" 2>/dev/null)
REV_REMOTE=$(git --git-dir "$GIT_DIR" rev-parse --verify "$UPSTREAM" 2>/dev/null)
REV_BASE=$(git --git-dir "$GIT_DIR" merge-base "$REF_HEAD" "$UPSTREAM" 2>/dev/null)
[ $DEBUG -eq 1 ] && echo "REV_LOCAL: $REV_LOCAL"
[ $DEBUG -eq 1 ] && echo "REV_REMOTE: $REV_REMOTE"
[ $DEBUG -eq 1 ] && echo "REV_BASE: $REV_BASE"
if [ "$REV_LOCAL" = "$REV_REMOTE" ]; then
: # NOOP
else
if [ "$REV_LOCAL" = "$REV_BASE" ]; then
NEEDS_PULL_BRANCHES="${NEEDS_PULL_BRANCHES}\n$REF_HEAD"
fi
if [ "$REV_REMOTE" = "$REV_BASE" ]; then
NEEDS_PUSH_BRANCHES="${NEEDS_PUSH_BRANCHES}\n$REF_HEAD"
fi
fi
else
# Branch does not have an upstream (local/remote branch).
NEEDS_UPSTREAM_BRANCHES="${NEEDS_UPSTREAM_BRANCHES}\n$REF_HEAD"
fi
done
# Remove duplicates from NEEDS_XXXX and make comma-seperated
NEEDS_PUSH_BRANCHES=$(printf "$NEEDS_PUSH_BRANCHES" | sort | uniq | tr '\n' ',' | sed "s/^,\(.*\),$/\1/")
NEEDS_PULL_BRANCHES=$(printf "$NEEDS_PULL_BRANCHES" | sort | uniq | tr '\n' ',' | sed "s/^,\(.*\),$/\1/")
NEEDS_UPSTREAM_BRANCHES=$(printf "$NEEDS_UPSTREAM_BRANCHES" | sort | uniq | tr '\n' ',' | sed "s/^,\(.*\),$/\1/")
# Find out if there are unstaged, uncommitted or untracked changes
UNSTAGED=$(git --work-tree "$(dirname "$GIT_DIR")" --git-dir "$GIT_DIR" diff-index --quiet HEAD -- 2>/dev/null; echo $?)
UNCOMMITTED=$(git --work-tree "$(dirname "$GIT_DIR")" --git-dir "$GIT_DIR" diff-files --quiet --ignore-submodules --; echo $?)
UNTRACKED=$(git --work-tree "$(dirname "$GIT_DIR")" --git-dir "$GIT_DIR" ls-files --exclude-standard --others)
cd "$(dirname "$GIT_DIR")" || exit
STASHES=$(git stash list | wc -l)
cd "$OLDPWD" || exit
[ $DEBUG -eq 1 ] && echo "UNSTAGED: $UNSTAGED"
[ $DEBUG -eq 1 ] && echo "UNCOMMITTED: $UNCOMMITTED"
[ $DEBUG -eq 1 ] && echo "UNTRACKED: $UNTRACKED"
[ $DEBUG -eq 1 ] && echo "STASHES: $STASHES"
# Build up the status string if not flattening. Otherwise, print
# results immediately.
IS_OK=0 # 0 = Repo needs something, 1 = Repo needs nothing ('ok')
STATUS_NEEDS=""
if [ -n "$NEEDS_PUSH_BRANCHES" ] && [ "$NO_PUSH" -eq 0 ]; then
THIS_STATUS="${C_NEEDS_PUSH}Needs push ($NEEDS_PUSH_BRANCHES)${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ -n "$NEEDS_PULL_BRANCHES" ] && [ "$NO_PULL" -eq 0 ]; then
THIS_STATUS="${C_NEEDS_PULL}Needs pull ($NEEDS_PULL_BRANCHES)${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ -n "$NEEDS_UPSTREAM_BRANCHES" ] && [ "$NO_UPSTREAM" -eq 0 ]; then
THIS_STATUS="${C_NEEDS_UPSTREAM}Needs upstream ($NEEDS_UPSTREAM_BRANCHES)${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ "$UNSTAGED" -ne 0 ] || [ "$UNCOMMITTED" -ne 0 ] && [ "$NO_UNCOMMITTED" -eq 0 ]; then
THIS_STATUS="${C_NEEDS_COMMIT}Uncommitted changes${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ "$UNTRACKED" != "" ] && [ "$NO_UNTRACKED" -eq 0 ]; then
THIS_STATUS="${C_UNTRACKED}Untracked files${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ "$STASHES" -ne 0 ] && [ "$NO_STASHES" -eq 0 ]; then
THIS_STATUS="${C_STASHES}$STASHES stashes${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ "$STATUS_NEEDS" = "" ]; then
IS_OK=1
THIS_STATUS="${C_OK}ok${C_RESET}"
STATUS_NEEDS="${STATUS_NEEDS}${THIS_STATUS} "
[ "$FLATTEN" -eq 1 ] && [ "$EXCLUDE_OK" -ne 1 ] && printf "${PROJ_DIR}$CUR_BRANCH: $THIS_STATUS\n"
fi
if [ "$FLATTEN" -ne 1 ]; then
# Print the output, unless repo is 'ok' and -e was specified
if [ "$IS_OK" -ne 1 ] || [ "$EXCLUDE_OK" -ne 1 ]; then
printf "${PROJ_DIR}$CUR_BRANCH: $STATUS_NEEDS\n"
fi
fi
# Throttle if requested
if [ "$DO_FETCH" -eq 1 ] && [ "$THROTTLE" -ne 0 ]; then
sleep "$THROTTLE"
fi
done
done