We are testing out open source contribution during our live class
- Fork repo
- Clone the forked repo to your local machine
git clone <url-of-forked -repo>
- CD into the project directory
cd <cloned-repo-dir>
- Setup original repo as upstream
git remote add upstream <url-of-original-repo>
- make changes and send PR
- Make change
- Add file
git add .
- Commit changes
git commit -m <'your-message'>
- Push changes (git push origin main)
- Go to GitHub and click PR again the original (my version)