-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgit-issue
27 lines (23 loc) · 807 Bytes
/
git-issue
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
#!/bin/sh
set -e
masterBranch="master"
((!$#)) && echo No issue id, command ignored! && echo " - git issue <issue id>" && exit 1
if [[ "$1" = "--h" ]] ; then
echo "Creates an issue branch at the latest commit on $masterBranch and checks it out.";
echo "Unlike feature branches, issue branches will directly be merged into $masterBranch when finished."
echo " - git issue <workitem id>";
exit 1;
fi
if ! [ -d .git ] ; then
if ! [ $(git rev-parse --is-inside-work-tree &>/dev/null; echo "${?}") == '0' ] ; then
echo "Current directory is not a git folder."
exit 1;
fi
fi
numericRegex="^[.0-9]+$"
if [[ "$1" =~ $numericRegex ]] ; then
echo Starting issue $1
git checkout -b issue/$1 $masterBranch
else
echo "Issue names have to be numeric (e.g. the work item id related to them)"
fi