Skip to content
Dr-Bean edited this page Jan 16, 2016 · 20 revisions

Helpful links for developing with spksrc:

To add something to spksrc, here is how to proceed

You are not a SynoCommunity member

Open a Pull Request.

You are a SynoCommunity member

For medium to large changes (new SPKs, new features, ...)

  1. Clone spksrc git clone https://github.com/SynoCommunity/spksrc.git
  2. Create a new branch: git checkout -b newfeature
  3. Do stuff in it...
  4. Go back in master branch: git checkout master
  5. Update it: git pull
  6. Merge your new feature with master: git merge newfeature
  7. Push up-to-date with new feature master: git push

For light changes (bugfixes, small new features, ...)

  1. Clone spksrc git clone https://github.com/SynoCommunity/spksrc.git if not done already
  2. Pull latest version: git pull
  3. Do stuff...
  4. When you're done, pull & push: git pull && git push
Clone this wiki locally