1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

docs(CONTRIBUTING):add a step within 'How to open a pull request'

This commit is contained in:
jakie.oymj 2018-07-14 08:03:33 +08:00
parent 059d0120be
commit 6efe28b133

View File

@ -122,6 +122,9 @@ git clone git@github.com:<YOUR_USER>/qTox.git
# Add the "upstream" remote to be able to fetch from the qTox upstream repository:
git remote add upstream https://github.com/qTox/qTox.git
# Fetch from the "upstream" repository
git fetch upstream
# Point the local "master" branch to the "upstream" repository
git branch master --set-upstream-to=upstream/master
```