Skip to content
Philipp Schmitt edited this page Sep 10, 2015 · 2 revisions

Contributing

Git repo setup for AUR contributors

git clone https://github.com/pschmitt/pia-tools.git
cd pia-tools
git remote add aur ssh+git://[email protected]/pia-tools.git # optional, only for AUR contributors

Workflow

# on master branch
echo '# My awesome change' >> PKGBUILD
git commit -am "My awesome commit message"
git push origin master
# aur branch
git checkout aur
git cherry-pick e23828f
git push aur aur:master
Clone this wiki locally