A quick reference for Git workflows that you never got around to remembering. Meant for those who mildly know what they're doing with Git.
- Checkout a branch from the upstream
- Configure the upstream
- Delete an upstream branch
- Pull from the upstream
- Push to the upstream
- Rebase onto the upstream
Git Workflows will consistently use these terms:
Term | Description |
---|---|
origin | Git's default name for a remote repository, including forks. |
upstream | The name we will use for the remote repository that a fork was created from. |