Skip to content
Diaoul edited this page Oct 25, 2011 · 20 revisions

If you want to add something to spksrc, here is how to proceed

You are in SynoCommunity, no need to fork

  1. Clone spksrc git clone https://github.com/SynoCommunity/spksrc.git
  2. Create a new branch with your additions git checkout -b newfeature
  3. Do stuff...
  4. Stay in sync with latest version: git merge upstream/master
  5. Push it: git push origin newfeature

You are NOT in SynoCommunity fork it!

  1. Fork spksrc and clone your fork git clone https://[email protected]/You/spksrc.git
  2. Create a new branch with your additions git checkout -b newfeature
  3. Do stuff...
  4. Submit a pull request!
Clone this wiki locally