forked from cxw42/git-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-push-submodule-change
executable file
·69 lines (51 loc) · 1.58 KB
/
git-push-submodule-change
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
#!/bin/bash
# git-push-submodule-change: push a change to a submodule and then
# walk back up the tree, pushing as you go.
# By Christopher White <[email protected]>
# Copyright (c) 2020 D3 Engineering, LLC.
set -eEuo pipefail
# --- main() --------------------------------------------------------------
function main() {
# Args
if (( $# < 1 )); then
echo "Usage: $0 '<commit message here>' ['commit message in parents']" 1>&2
return 1
fi
local -r msg_here="$1"
if (( $# > 1 )); then
local -r msg_next="$2"
else
local -r msg_next="$msg_here"
fi
# Work
local last_repo_root=''
local next_repo_root
next_repo_root="$(next_repo_up)"
local last_dir=''
local next_dir="$PWD"
local msg="$msg_here"
while [[ "$last_repo_root" != "$next_repo_root" ]]; do
echo "last $last_repo_root; next $next_repo_root; here $next_dir"
if [[ ! "$last_dir" ]]; then
git add .
else
git add "$last_dir"
fi
git commit -m "$msg"
git push
# Iterate
last_repo_root="$next_repo_root"
last_dir="$next_dir"
cd "$next_repo_root" || return 1
next_repo_root="$(next_repo_up)"
next_dir="$PWD"
msg="$msg_next"
done
}
# --- Helpers -------------------------------------------------------------
# Get the root directory of the next repo up.
function next_repo_up() {
git rev-parse --show-superproject-working-tree
}
# --- Go, Speed Racer! ----------------------------------------------------
main "$@"