zulip/docs/tutorials/working-copies.md

54 lines
1.7 KiB
Markdown
Raw Normal View History

# Working copies
2017-06-21 21:01:10 +02:00
When you work on Zulip code, there are three working copies
of the Zulip git repo that you are generally concerned with:
- local copy: This lives on your laptop or your remove dev instance.
- forked copy: This lives on GitHub, and it's tied to your account.
- official Zulip repo: https://github.com/zulip/zulip
We sometimes call the forked copy the **origin** remote.
We sometimes call the official repo the **upstream** remote.
When you work on Zulip code, you will end up moving code between
the various working copies.
## Workflows
Sometimes you need to get commits. Here are some scenarios:
- You may fork the official Zulip repo to your GitHub fork.
- You may fetch commits from the official Zulip repo to your local copy.
2017-06-21 21:01:10 +02:00
- You occasionally may fetch commits from your forked copy.
Sometimes you want to publish commits. Here are scenarios:
- You push code from your local copy to your GitHub fork. (You usually
2017-06-21 21:01:10 +02:00
want to put the commit on a feature branch.)
- You submit a PR to the official Zulip repo.
Finally, the Zulip core team will occasionally want your changes!
- The Zulip core team can accept your changes and add them to
the official repo, usually on the master branch.
2017-06-21 21:01:10 +02:00
## Names
We call remote working copies of the repository by these short
names.
- **origin**: This is your fork.
- **upstream**: This is the official Zulip repo.
## Relevant git commands
The following commands are useful for moving commits between
working copies:
- `git fetch`: This grabs code from another repo to your local copy.
- `git push`: This pushes code from your local repo to one of the remotes.
- `git remote`: This helps you configure short names for remotes.
2017-06-21 21:01:10 +02:00
- `git pull`: **Do not use this, please**!