Skip to content

Contributing

Extragornax edited this page May 1, 2018 · 4 revisions

All PR are welcome :)

In a few steps

  1. Fork the repo
  2. clone the repo with git clone --branch dev [email protected]:terminal-atomics/discordpp.git
  3. create a new branch git checkout -b branch-name
  4. do your work
  5. check your code (see below)
  6. git push
  7. Go to your github repository, and create a pull request from your branch to dev main repo.

Few rules

Always work on a dedicated branch:

git checkout -b branch-name

Before modifying code and pushing changes, stay up to date with the dev branch:

// Add blogotext to upstream source
git remote add upstream  https://github.com/terminal-atomics/discordpp.git

// Now, you can refresh your fork from the souce
git pull --squash upstream dev

You can found some documentation on help.github.com / syncing-a-fork

Check your code

TO DO travis tester

Clone this wiki locally