Skip to content
Maoguang Wang edited this page May 26, 2017 · 9 revisions

Table of Contents

Q: How to write emails with links?

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

Q: How to update your fork?

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>

Q: What does fork mean? What does clone mean?

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.

Clone this wiki locally