blob: 493d89b2232a49a7b8fdd9c0eae42a4bc88f39a4 (
plain)
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
|
# vim: ft=sh:
# Get path to worktree for git branch
_gitbworktree() {
git worktree list --porcelain | \
awk -v ref="refs/heads/$1" \
'/^worktree / { worktree = $2 }; /^branch / { if ($2 == ref) { print worktree }}'
}
# Automatic branch merger (merge branch, push it to server and remove branch)
# Expects name of the branch as argument
# It fails if it's not fast forward merge and if there is fixup! commit.
gitbmerge() (
set -e
[ -z "$(git log --grep="^fixup\!" HEAD.."$1")" ] || {
echo "First squash fixups!"
return 1
}
[ -z "$(git log --grep="^Apply suggestion to " HEAD.."$1")" ] || {
echo "First squash suggestions!"
return 1
}
local wt
wt="$(_gitbworktree "$1")"
if [ -n "$wt" ]; then
if [ -d "$wd/.git" ]; then
echo "Branch is checked out in root repository!"
return 1
fi
rm -r "$wt"
git worktree prune
fi
git merge --ff-only "$1" && git push && git branch -d "$1" && git push origin :"$1"
)
# Checkout branch to new work tree
gitbcheckout() {
local nw
nw="$(git rev-parse --show-toplevel)-$1"
git worktree add "$nw" "$1"
cd "$nw"
git submodule update --no-fetch --init --recursive
}
alias gitbco='gitbcheckout'
# Create new branch from HEAD
gitbnew() {
git branch "$1" HEAD
gitbcheckout "$1"
}
|