Absolutely! Here’s a clean summary of all the Git commands from the First Contributions website, in the correct order, ready to drop into your README.md for anyone contributing manually (without your shell script):
⸻
🚀 How to Contribute (Manually) 1. Fork the repo on GitHub
Go to: https://github.com/firstcontributions/first-contributions Click the “Fork” button in the top-right corner.
⸻
2. Clone your fork to your computer
git clone git@github.com:your-username/first-contributions.git cd first-contributions
Replace your-username with your actual GitHub username.
⸻
3. Create a new branch
git switch -c add-your-name
Replace add-your-name with something like add-john-doe.
⸻
4. Open and edit Contributors.md
Add your name somewhere in the middle, not at the top or bottom.
You can do this with:
nano Contributors.md
Or open the file in VS Code or your editor of choice.
⸻
5. Stage the changes
git add Contributors.md
⸻
6. Commit your changes
git commit -m "Add your-name to Contributors list"
Replace your-name with your actual name.
⸻
7. Push your branch to GitHub
git push -u origin add-your-name
⸻
8. Submit a pull request
• Go to your fork on GitHub.
• You’ll see a “Compare & pull request” button. Click it.
• Submit your PR!
⸻
Let me know if you want this merged into your fancy README.md version!