3 # by Markus Heidelberg, 2008
5 # Fetch the current runtime files, commit them to the repository and show
6 # changes if available.
8 # check the current branch
9 if [ "$(git symbolic-ref HEAD)" != "refs/heads/vim-runtime" ]
11 echo 'You have to be on the "vim-runtime" branch'
15 rsync
-avzcP --delete \
17 --include="/spell/en.*.spl" \
18 --exclude="/spell/*.spl" \
19 --include="/spell/en.*.sug" \
20 --exclude="/spell/*.sug" \
21 ftp.nluug.
nl::Vim
/runtime
/ runtime
25 git commit
-m"update runtime files" &&