-
Notifications
You must be signed in to change notification settings - Fork 1
/
git-go
executable file
·141 lines (124 loc) · 2.73 KB
/
git-go
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
#!/usr/bin/env bash
command -v hub >/dev/null 2>&1 || {
echo >&2 "This command needs hub installed and in PATH. http://defunkt.io/hub"
exit 1
}
# [TODO] make login resolution a function call
if [ -z "$GITHUB_USER" ]; then
echo >&2 "Please define GITHUB_USER with your GitHub user to let me know who you are."
exit 1
fi
function gh_browse() {
open "https://github.com/$1"
}
function repo_browse() {
if [ -d .git ]; then
hub browse "$1"
else
echo "Must be in a git repository to run that command."
exit 1
fi
}
function usage() {
read -r -d '' usage <<"BLOCK"
USAGE: git-go [OPTION] [COMMAND]
SYNOPSIS:
CLI helper for GitHub.com, inspired by the CommandBar
http://git.io/_OnQ3Q
OPTIONS:
-g Perform command globally, not scoped to current git repository
COMMANDS:
search "q" - Perform a search
@user - Browse a user
explore - Explore GitHub
my [SUBCOMMAND] - Browse your personal items
dashboard
issues [assigned|mentioned|created]
notifications
profile
pulls
settings
stars
- Everything else forwards to `hub browse`
BLOCK
echo "$usage"
}
[ $# -eq 0 ] && {
usage
exit 1
}
while getopts ":g" opt; do
case $opt in
g)
global_browse=1
;;
\?)
echo "Invalid option: -$OPTARG" >&2
;;
esac
done
# Clear all options and reset the command line
shift $((OPTIND - 1))
case "$1" in
search)
gh_browse "search?q=$2"
;;
@*)
target=${1//@/}
gh_browse "$target"
;;
explore)
gh_browse 'explore'
;;
my*)
case $2 in
dashboard)
gh_browse "dashboard"
;;
issues)
if [[ -z $global_browse ]]; then
case $3 in
m*)
filter="mentioned"
;;
c*)
filter="created_by"
;;
*)
filter="assigned"
;;
esac
repo_browse "-- issues/$filter/$GITHUB_USER"
else
gh_browse "dashboard/issues"
fi
;;
notifications)
if [[ -z $global_browse ]]; then
repo_browse "-- notifications/$GITHUB_USER"
else
gh_browse "dashboard/notifications"
fi
;;
profile)
gh_browse "$GITHUB_USER"
;;
pulls)
if [[ -z $global_browse ]]; then
repo_browse "-- pulls/$GITHUB_USER"
else
gh_browse "dashboard/pulls"
fi
;;
settings)
gh_browse "settings/profile"
;;
stars)
gh_browse "stars"
;;
esac
;;
*)
repo_browse "-- $1"
;;
esac