- Fork this repo
- Clone the forked Repogitory
git clone https://github.com/Your-GitHub-Username/github-practice
- Keep your copy up to date with the original repogitory
3.1git remote add upstream https://github.com/Lada496/github-practice.git
3.2git fetch upstream
- Let local copy of master branch point to upstream
git branch --set-upstream-to=upstream/main main
- Create your feature branch
- Open pull request to main branch
- Freaquently check if there are any updates and fetch upstream if there are with
git pull origin main
or click "fetch and merge" if you manually update your repo.
3. Freaquently check what branch you modify with `git branch`