-
Notifications
You must be signed in to change notification settings - Fork 0
Contributing
Extragornax edited this page May 1, 2018
·
4 revisions
All PR are welcome :)
- Fork the repo
- clone the repo with
git clone --branch dev [email protected]:terminal-atomics/discordpp.git
- create a new branch
git checkout -b branch-name
- do your work
- check your code (see below)
git push
- Go to your github repository, and create a pull request from your branch to
dev
main repo.
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
TO DO travis tester