Practical Git Guide
Practical guide to everyday Git commands

Solutions to 90% of your daily git challenges
Show your support by giving a ⭐ to this repo
Contents
- I want to clone a project and start going through the code.
- I have cloned the repo. But I am not able to see the proper code!!!
- Someone has made a few changes in the code and asked me to pull those changes. What should I do?
- I have modified the code and added changes. How do I commit my changes?
- What if I want only some of my files added and pushed instead of all the changes?
- I have modified/formatted some code while going through it. Now I want the code to be back to the state as it was.
- I have committed my changes. How can I undo my change?
- I have made some changes to the branch. Also, I…