- Fork the Repository
- Clone the Forked repository
git clone https://github.com/URL-HERE/
Add Scripts and necessary changes
Initialize git in the repo and adding contents
git init (Can be skipped)
git add .
Commit the changes with commit messages
git commit -m "MENTION-YOUR-COMMITS"
git remote add origin URL-HERE
git push -u origin master
Fetch the changes made in upstream
git fetch UPSTREAM/MASTER
Merge the changes from upstream/master into your local master branch
git merge UPSTREAM/MASTER
Push to your branch
git push