From b563ea64625b75c1acf9559bf220413a5b9244ec Mon Sep 17 00:00:00 2001 From: arcan1s Date: Sun, 9 Aug 2015 00:38:48 +0300 Subject: [PATCH] edit readme --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5342862..d62fe0a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,15 @@ pkgbuild ======== -My Arch AUR PKGBUILD's. At the moment it is only for private use since any package -points to git repository by using SSH protocol (thus it requires my private key). +My Arch AUR PKGBUILD's. At the moment this repository is only for private use +since any package points to git repository over SSH protocol (thus it requires +my private key). -Clone or update submodule statuses +Clone or submodule statuses update ---------------------------------- ``` -# clone if no repository cloned +# clone if no repository clones git clone https://github.com/arcan1s/pkgbuild.git cd pkgbuild git submodule update --init @@ -33,11 +34,12 @@ Update package cd pkgbuild/$pkgbase vim PKGBUILD # some changes here -mkscrinfo -git add PKGBUILD .SRCINFO # newly created files should be added too +mksrcinfo +git add PKGBUILD .SRCINFO # newly created (edited) files should be added too + # please do not use -A since it will add binaries too git commit -m 'bump $pkgbase to $pkgver-$pkgrel' git push -# now update repository +# now update repository if there are no errors cd .. git add $pkgbase git commit -m 'bump $pkgbase to $pkgver-$pkgrel' @@ -50,7 +52,7 @@ Force update submodules to AUR state ``` cd pkgbuild git submodule foreach git pull origin master -git add -A . # or smth like this +git add -A . # or something like this git commit -m 'bump packages to aur versions' git push ```