diff --git a/doc/manual.txt b/doc/manual.txt index de9ac342a5a..5edd3382b30 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -402,3 +402,19 @@ package is downloaded, compiled and installed. NOTE: A function defined in a template has preference over the same function defined by a `build_style` script. + +Contributing via git +~~~~~~~~~~~~~~~~~~~~ + +You can fork the `xbps-packages` git repository on github and then set up +a remote to pull in new changes: + +---------------------------------------------------------------------- +$ git remote add upstream git://github.com/voidlinux/xbps-packages.git +---------------------------------------------------------------------- + +To pull in new changes from `upstream`: + +-------------------------- +$ git pull upstream master +--------------------------