From a952eec0afd0150594b36761e840872e05fd9c5b Mon Sep 17 00:00:00 2001 From: Markus Heidelberg Date: Sun, 15 Feb 2009 23:35:12 +0100 Subject: [PATCH] README: move "Getting runtime" to the top This is probably the section of the "For developers" chapter, which will be used soonest in practice, if at all. Furthermore it is the part most frequently used by the maintainer. --- README_gitrepo.txt | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/README_gitrepo.txt b/README_gitrepo.txt index a1ef4eb4..812f0f6b 100644 --- a/README_gitrepo.txt +++ b/README_gitrepo.txt @@ -213,6 +213,27 @@ of the latest runtime files. It helps not forgetting the details and can be reading for interested people. +Getting the latest runtime files +-------------------------------- + +The latest runtime files in the 'vim-runtime' branch are fetched via rsync +with the following command: + + $ rsync -avzcP --delete \ + --exclude="/dos/" \ + --include="/spell/en.*.spl" \ + --exclude="/spell/*.spl" \ + --include="/spell/en.*.sug" \ + --exclude="/spell/*.sug" \ + ftp.nluug.nl::Vim/runtime/ runtime + +Therefore, a script is available in the 'stuff' branch, which automatically +commits and shows the changes after updating. You don't even have to save the +script but can just use this commmand: + + $ git show origin/stuff:update-vim-runtime.sh | sh + + Merging the 'vim-runtime' branch -------------------------------- @@ -323,26 +344,6 @@ Now you can add the runtime files and do your initial commit. This will also create the branch 'custom-runtime'. -Getting the latest runtime files --------------------------------- - -The latest runtime files in the 'vim-runtime' branch are fetched via rsync -with the following command: - - $ rsync -avzcP --delete \ - --exclude="/dos/" \ - --include="/spell/en.*.spl" \ - --exclude="/spell/*.spl" \ - --include="/spell/en.*.sug" \ - --exclude="/spell/*.sug" \ - ftp.nluug.nl::Vim/runtime/ runtime - -Therefore, a script is available in the 'stuff' branch, which automatically -commits and shows the changes after updating. You don't even have to save the -script but can just use this commmand: - - $ git show origin/stuff:update-vim-runtime.sh | sh - //////////////// vim: ft=asciidoc //////////////// -- 2.11.4.GIT