First follow the steps of project setup given in the README.md
- Initialize git repository.
git init
- Create a new branch.
git branch YourBranchName
- Shift to that branch from master branch.
git checkout YourBranchName
Make all the changes (bug fixes, enhancements on your branch)
- Add all the changes once you are done.
git add .
- Make a commit message.
git commit -m 'your_message'
- Shift to the master branch.
git checkout main
- Merge everything from your branch to the master branch.
git merge YourBranchName
- Get ready to push from your local machine.
git remote add <message> https://<GitHubToken>@github.com/<username>/<RepositoryName>.git
- Push everything on your forked repository.
git push -u <message> main