-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.sh
executable file
·201 lines (173 loc) · 5.09 KB
/
update.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/usr/bin/env bash
VIM_ROOT="$HOME/.vim"
DOTFILES_ROOT="`pwd`"
set -e
echo ''
info () {
printf "\r [ \033[00;34m..\033[0m ] $1\n"
}
warn () {
printf "\r [ \033[0;31m!!\033[0m ] $1\n"
}
user () {
printf "\r [ \033[0;33m??\033[0m ] $1 "
}
success () {
printf "\r [ \033[0;32mOK\033[0m ] $1\n"
}
fail () {
printf "\r [\033[0;31mFAIL\033[0m] $1\n"
echo ''
exit
}
overwrite_branch () {
read -n 1 action
if [ "$action" == "y" ] || [ "$action" == "Y" ]
then
info "Wait for overwriting..."
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
random="`date +%s`"
git add .
git commit -a -m "tmp commit"
git branch -m tmp-$random
git checkout -b master origin/master
git branch -D tmp-$random
success "checkout to origin/master"
else
warn "Didn't overwrite"
fi
}
link_files () {
ln -s $1 $2
success "linked $1 to $2"
}
copy_files () {
cp -a $1 $2
success "copy $1 to $2"
}
update_dotfiles () {
info 'updating dotfiles'
ret=0
git status | ( grep "Changes" ) && ret=1
if [ $ret -eq 1 ]
then
warn "Changes are not committed!"
user "Do you want to overwrite current git branch? [Y/N]"
overwrite_branch
fi
ret=0
git fetch origin
git merge origin/master | grep "CONFLICT" && ret=1
if [ $ret -eq 1 ]
then
warn "Conflict!"
user "Do you want to overwrite current git branch? [Y/N]"
overwrite_branch
fi
unset ret
git submodule foreach --recursive git fetch origin
git submodule update --init --recursive
}
install_dotfiles () {
info 'installing dotfiles'
is_link=$3
for src in `find $1 -maxdepth 1 -mindepth 1`
do
if [ $src != "$DOTFILES_ROOT/private/.git" ] &&
[ $src != "$DOTFILES_ROOT/private/.gitignore" ]
then
dst="$2/`basename \"${src}\"`"
if [ -f $dst ] || [ -d $dst ] || [ -L $dst ]
then
overwrite=false
backup=false
skip=false
if [ "$overwrite_all" == "false" ] && [ "$backup_all" == "false" ] && [ "$skip_all" == "false" ]
then
user "File already exists: `basename $src`, \nWhat do you want to do? [s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read -n 1 action
case "$action" in
o )
overwrite=true;;
O )
overwrite_all=true;;
b )
backup=true;;
B )
backup_all=true;;
s )
skip=true;;
S )
skip_all=true;;
* )
;;
esac
fi
if [ "$overwrite" == "true" ] || [ "$overwrite_all" == "true" ]
then
rm -rf $dst
success "removed $dst"
fi
if [ "$backup" == "true" ] || [ "$backup_all" == "true" ]
then
mv $dst $dst\.backup
success "moved $dst to $dst.backup"
fi
if [ "$skip" == "false" ] && [ "$skip_all" == "false" ]
then
if [ "$is_link" == "1" ]
then
link_files $src $dst
else
copy_files $src $dst
fi
else
success "skipped $src"
fi
else
if [ "$is_link" == "1" ]
then
link_files $src $dst
else
copy_files $src $dst
fi
fi
fi
done
}
install_all_dotfiles () {
# global variables
overwrite_all=false
backup_all=false
skip_all=false
# relink & copy configs
install_dotfiles $DOTFILES_ROOT/link $HOME 1
install_dotfiles $DOTFILES_ROOT/copy $HOME 0
if [ -d $DOTFILES_ROOT/private/link ]; then
install_dotfiles $DOTFILES_ROOT/private/link $HOME 1
fi
if [ -d $DOTFILES_ROOT/private/copy ]; then
install_dotfiles $DOTFILES_ROOT/private/copy $HOME 0
fi
# for Mac
if [ "$(uname -s)" == "Darwin" ]
then
install_dotfiles $DOTFILES_ROOT/osx $HOME 0
fi
# fix ssh file permissions
if [ -f $HOME/.ssh/id_rsa ]; then
chmod 400 $HOME/.ssh/id_*
fi
# update vim plugins
if [ ! -f $VIM_ROOT/autoload/plug.vim ]; then
mkdir -p ~/.vim/autoload
curl --insecure -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
fi
vim +PlugUpgrade +PlugUpdate +PlugClean! +helptags\ ~/.vim/doc +qall
}
# fetch updates form git repo
update_dotfiles
# installation
install_all_dotfiles
source ~/.bashrc