Clone this repository to your local machine by running git clone <repo-url>
in your terminal.
Checkout to a new branch by running git checkout <branch-name>
in your terminal.
If you fork:
- Clone your forked repository to your local machine by running
git clone <repo-url>
in your terminal. - Add this repository as a remote by running
git remote add upstream <repo-url>
in your terminal. - Checkout to a new branch by running
git checkout <branch-name>
in your terminal. - Fetch the latest changes from the upstream repository by running
git fetch upstream
in your terminal. - Push the latest changes to your forked repository by running
git push origin <branch-name>
in your terminal.