summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index a6ec275..8014be5 100644
--- a/README.md
+++ b/README.md
@@ -6,3 +6,19 @@ Should be identical to https://aur.archlinux.org/packages/?SeB=m&K=yuvadm
Feel free to open issues/PRs in this repository for fixes to be merged into the AUR.
+## Usage
+
+### New AUR Package
+
+```bash
+$ git remote add -f pkgname ssh://aur@aur.archlinux.org/pkgname.git
+$ git merge -s ours --no-commit pkgname/master
+$ git read-tree --prefix=pkgname/ -u pkgname/master
+$ git commit -m "Add pkgname subtree"
+```
+
+### Synchronizing Existing Package Updates
+
+```bash
+$ git pull -s subtree pkgname master
+```