-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
100 lines (78 loc) · 2.62 KB
/
init.sh
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
#!/usr/bin/env bash
### Script for initializing gitbasher
# Run it before using gitbasher
### Consts for colors
RED="\e[31m"
GREEN="\e[32m"
YELLOW="\e[33m"
BLUE="\e[34m"
PURPLE="\e[35m"
CYAN="\e[36m"
GRAY="\e[37m"
ENDCOLOR="\e[0m"
BOLD="\033[1m"
NORMAL="\033[0m"
### Function tries to get config from local, then from global, then returns default
# $1: config name
# $2: default value
# Returns: config value
function get_config_value {
value=$(git config --local --get $1)
if [ "$value" == "" ]; then
value=$(git config --global --get $1)
if [ "$value" == "" ]; then
value=$2
fi
fi
echo -e "$value"
}
### Branches
current_branch=$(git branch --show-current)
main_branch=$(get_config_value gitbasher.branch "main")
if [[ "$(git branch | grep -E "^\*? ?master$" )" != "" ]] && [[ "$(git branch | grep -E "^\*? ?main$" )" == "" ]]; then
main_branch="master"
elif [[ "$(git branch | cat)" == "" ]]; then
main_branch=$current_branch
fi
if [ "$(get_config_value gitbasher.branch "")" == "" ]; then
git config --local gitbasher.branch "$main_branch"
fi
### Remote
origin_name=$(git remote -v | head -n 1 | sed 's/\t.*//')
if [ "$origin_name" == "" ]; then
echo -e "${YELLOW}There is no configured remote in this repo!${ENDCOLOR}"
echo
echo -e "Use ${BLUE}git remote add origin <url>${ENDCOLOR} to add it manually"
echo -e "Press '${BOLD}y${ENDCOLOR}' to add it now or an any key to exit"
read -n 1 -s choice
if [ "$choice" != "y" ]; then
exit
fi
echo
read -p "Remote repo URL: " -e remote_url
if [ "$remote_url" == "" ]; then
exit
fi
remote_check=$(git ls-remote "$remote_url" 2>&1)
if [[ "$remote_check" == *"does not appear to be a git"* ]]; then
echo
echo -e "${RED}'$remote_url' is not a git repository!${ENDCOLOR}"
echo "Please make sure you have the correct access rights and the repository exists."
exit
fi
git remote add origin "$remote_url"
echo -e "${GREEN}Remote successfully added!${ENDCOLOR}"
if [ "$remote_check" == "" ]; then
echo -e "${YELLOW}Repository '$remote_url' is probably empty${ENDCOLOR}"
fi
echo
origin_name=$(git remote -v | head -n 1 | sed 's/\t.*//')
fi
### Get configuration from git config
sep=$(get_config_value gitbasher.sep "-")
editor=$(get_config_value core.editor "vi")
ticket_name=$(get_config_value gitbasher.ticket "")
scopes=$(get_config_value gitbasher.scopes "")
### Is this is a first run of gitbasher in this project?
is_first=$(get_config_value gitbasher.isfirst "true")
git config --local gitbasher.isfirst "false"