Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 880 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 880 Bytes

git logo

Git Cheat Sheets

Git Documentation

Git Techniques

Top 5 Git Commands by @Sahilandsarra

  • git rebase - Similar to git merge. but this leaves your commit history much clearner.
  • git fetch - Similar to git pull. but this only fetches the changes from the remote server, but does not merge them.
  • git reset - Unstages changes for a specific file.
  • git cherry pick - Apply a specific commit from one branch to another.
  • git stash - Temporarily save changes that are not ready to be committed. This allows you to switch branches without committing.