-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpushit
More file actions
executable file
·34 lines (24 loc) · 746 Bytes
/
pushit
File metadata and controls
executable file
·34 lines (24 loc) · 746 Bytes
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
#!/usr/bin/ksh
Tmp="/tmp/$$"
TmpDir="/tmp/dir$$"
trap 'rm -f "$Tmp" >/dev/null 2>&1' 0
trap "exit 2" 1 2 3 13 15
rm $Tmp >/dev/null 2>&1
# cp plugin/session.vim /home/mestes/.vim/bundle/vim-dir/plugin/session.vim
# exit 0
#-------------------------------------------------------------------------------------
./buildmd > README.md
git add plugin/session.vim
git add images/session.png
git add pushit
git add buildmd
git add classmethodlist
git add README.md
git commit -m "Update"
git push -u origin master
git commit -m "Update"
git push -u origin master
REPO=vim-session
rm -rf $HOME/.vim/bundle/$REPO
vim -c ":PluginInstall! $REPO" -c ":qa!"
#-------------------------------------------------------------------------------------