Please follow these steps
- Fork Clone the repo to your gihub and local machine
git clone https://github.com/**your-github-handle**/3-Tier-Relational-Database.git
- Create your own working branch to deploy your code that will be merged to develop. (Direct code of develop brnach can create confilcts so the PR from develop to develop will not be merge)
git checkout -b your-brach-name
- Add remote named upstream ponting to the main repo (origin will point to your clone)
git add upstream https://github.com/prakashupes/3-Tier-Relational-Database.git
- Keep updated with main repo
git fetch upstream