forked from jwiegley/git-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-fire
executable file
·83 lines (58 loc) · 1.41 KB
/
git-fire
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
#!/usr/bin/env sh
# Setup.
VERSION="0.0.1"
version() {
printf "git-fire version %s\n" "$VERSION"
git --version
}
# Helpers.
current_branch() {
basename "$(git symbolic-ref HEAD)"
}
current_epoch() {
date +%s
}
user_email() {
git config user.email
}
new_branch() {
echo "fire-${1:-$(current_branch)}-$(user_email)-$(current_epoch)"
}
fire() {
initial_branch="$(current_branch)"
git checkout -b "$(new_branch)"
# cd to git root directory
cd "$(git rev-parse --show-toplevel)"
git add -A
if [ -z "$1" ]; then
message="Fire! Branch $(current_branch)."
else
message="$*"
fi
git commit -m "$message" --no-verify
for remote in $(git remote); do
git push --set-upstream "${remote}" "$(current_branch)" || true
done
for sha in $(git rev-list -g stash); do
git push origin "$sha":refs/heads/"$(current_branch $initial_branch)"-stash-"$sha"
done
printf "\n\nLeave building!\n"
}
display_help() {
cat <<-EOF
usage:
git fire [options] [COMMAND] [args]
commands:
git fire Add, commit, and push to remote in case of a fire
git fire <message> Execute git fire with <message> for commit message
options:
-V, --version Output current version of git-fire
-h, --help Display this help information
EOF
exit 0
}
case $1 in
-V|--version) version; exit 0 ;;
-h|--help) display_help; exit 0 ;;
esac
fire "$@"