- Make sure you open an issue first before making your pull request
- Make sure you give a meaningful name to whatever file or folder you are adding
- Step 1: Fork the repo and Go to your Git terminal and clone it on your machine.
- Step 2: Add a upstream link to main branch in your cloned repo
git remote add upstream https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals.git
- Step 3: Keep your cloned repo upto date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)
git pull upstream main https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals.git
- Step 4: Create your feature branch
git checkout -b <feature-name>
- Step 5: Commit all the changes
git commit -m "Write a meaningfull but small commit message"
- Step 6: Push the changes for review
git push origin <branch-name>
- Step 7: Create a PR on Github.