Translating: added branching instruction

* Added branching instruction in Github cheat sheet.
* Improve clone instruction. Add `upstream` bookmark.
This commit is contained in:
Koala Yeung 2017-05-06 12:04:59 +08:00
parent d75b3d41c6
commit 72135110b6
1 changed files with 10 additions and 2 deletions

View File

@ -19,9 +19,17 @@ git config --global user.email johndoe@example.com
1. Open Terminal on your computer and navigate to a place where you want to store the project using `cd` (ex. `cd ~/Documents`)
2. Download a copy of the project using
```
git clone https://github.com/YOURUSERNAME/mastodon`
git clone https://github.com/YOURUSERNAME/mastodon
```
3. Write your awesome translations following the [translating guide](./Translating.md#translating-1)
3. Add the original mastodon repository as `upstream`
```
git remote add upstream https://github.com/tootsuite/mastodon.git
```
4. Branch out to translate. It is recommended to replace `locale` with RFC5646 language tag of you language:
```
git checkout -b locale
```
5. Write your awesome translations following the [translating guide](./Translating.md#translating-1)
## Push To Your Repository
1. Open Terminal and navigate to where you stored mastodon (ex. `cd ~/Documents/mastodon`)