Git Repository Instructions
The latest version of the plugin package can be found in a git repository. Of course, you will need to have git installed on your system.
The git repository page is here.
Getting the sources
The first time, just issue:
git clone git://repo.or.cz/gimp-lqr-plugin.git
This will create a directory called gimp-lqr-plugin under your current directory, with the package main tree.
You can then enter into it and install.
Later, you can update it by issuing:
make distclean
git pull
from inside the plugin directory.
Submitting changes
Changes may be submitted on a dedicated development branch, called mob. The user name also has to be mob.
In order to get a copy ready for this, issue:
git clone git+ssh://mob@repo.or.cz/srv/git/gimp-lqr-plugin.git
and enter into the gimp-lqr-plugin directory.
If you already have a git clone, use:
git config remote.origin.url 'git+ssh://mob@repo.or.cz/srv/git/gimp-lqr-plugin.git'
from inside the plugin directory.
Then, switch to the mob branch:
git checkout -b mob
git pull origin mob
Now you can work on the code; when you're done, commit your changes locally with:
git commit -a -m 'Comment about your changes'
and upload the result with:
git push origin mob








