-
Notifications
You must be signed in to change notification settings - Fork 14
Pull Requests
Philipp edited this page Dec 1, 2022
·
1 revision
- Create a fork of the bigER repository on GitHub
- Clone the forked repository locally:
git clone https://github.com/USERNAME/bigER.gi
- Track the upstream (original) repository as remote:
git remote add upstream https://github.com/borkdominik/bigER.git
- Create a new branch and commit your changes:
# base changes from master
git checkout master
# create a new branch
git checkout -b new-feature
# commit changes
git commit -m "Description of Change"
- If changes have been pushed to the remote repository, the branch in the local fork should be cleaned up before submitting a pull request.
# Merge changes from upstream
git fetch upstream
git checkout master
git merge upstream/master
# Rebase feature branch onto updated master
git checkout newfeature
git rebase master
# optionally, squash commits through interactive rebase
git checkout
git rebase -i master
- Push the changes to GitHub
git push origin new-feature
- Submit a new Pull Request on GitHub from the feature branch of the fork to the main branch of the remote repository.
For more information, see the following pages:
Usage
Development