-
-
Notifications
You must be signed in to change notification settings - Fork 373
GSoC FAQ
Maoguang Wang edited this page May 26, 2017
·
9 revisions
- Q: How to write emails with links?
- Q: How to update your fork?
- Q: What does fork mean? What does clone mean?
A: Please don't send it with a dot at the end see [1], because it takes you to nowhere. the correct name is [2]. Normally in email lists it's done by referencing. Like this answer.
[1] https://github.com/pgRouting/pgrouting/wiki/GSoC-FAQ.
[2] https://github.com/pgRouting/pgrouting/wiki/GSoC-FAQ
A: Fetch the changes from the upstream, Merge them in your branch and then push them to your fork.
git fetch upstream
git checkout <branchname>
git merge upstream/<branchname>
git push origin <branchname>
A: Clone is in your computer but fork is on Github. You have a clone in your computer, and the origin part is from your fork and the upstream part is main repository. So in your one clone you can access main repository and your fork.