Skip to content

Latest commit

 

History

History
69 lines (42 loc) · 1.6 KB

CONTRIBUTING.md

File metadata and controls

69 lines (42 loc) · 1.6 KB

Contributing

Don't forget to give a ⭐ if you like this repo.

1. Fork it 🍴

Get your own Fork/copy of The-SDE-Prep Fork Link

2. Clone it 👥

You need to clone (download) it to local machine using

git clone https://github.com/<your-github-username>/The-SDE-Prep

3. 🔭 Navigate to the project directory

# This will change directory to a folder The-SDE-Prep
$ cd The-SDE-Prep

4. 🗂️ Create a new branch

git checkout -b <your_branch_name>

5. 🪡 Make changes

6. ⚖️ Stage your changes and commit

git add -A

git commit -m "<your_commit_message>"

7. 🔀 Push your local commits to the remote repo

git push origin <branch_name>

8. 📌 Create a new pull request from your forked repository

Click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to.

9. 🏁 Wait for your PR review and merge approval

Once your PR has been reviewed and approved, the project maintainer will merge it and your PR will be closed.

📑 References

📚 Books

  • Data Structures with C by Schaum Series
  • Object Oriented Programming with C++ by E Balaguruswamy
  • Data Structures and Algorithms in Python by Tamassia

🌐 Websites

Happy Coding 👨‍💻