Skip to main content

Diff ↔ change in file/code

Diffing

to compare Diff in file

Track

of file/dir to keep track of Diff

References

  1. Git Repo ↔ collection of Commits for project Diff history

  2. Diffing ↔ to compare Diff in file

  3. Track ↔ of file/dir to keep track of Diff

  4. commit ↔ to create new Commit with Diff added in Staging

  5. Clean Working DirWorking Dir has no Tracked Diff

  6. fetch ↔ to download Diff in remote Git Repo

  7. clone ↔ to download copy of remote Git Repo/Diff to local repo

  8. diff ↔ to print Diff between Commits

  9. Fork ↔ to copy Github Repo to github.com acc, with link to Upstream to pull Diff

  10. Pull Request ↔ to ask Upstream author to review/Merge Fork Diff

  11. --hard ↔ flag to reset to discard all Diff

  12. stash ↔ to save Diff w/o Commit, to array list

  13. gitDev tool system to track Diff in files/Code

  14. git stash ↔ to save Diff to stash & remove Diff from view

  15. undo to most recent [Commit](commit) AND del [**_Diff_**](diff)git reset --hardHEAD

  16. git reset --soft HEAD ↔ to undo (& delete) last Commit & keep Diff. 💡 best to just click the undo last commit option in VSC Source Control Panel

  17. Incremental Computation ↔ (Design Pattern) to compute only Diff, build upon previous calc, avoid repeat work for better perf

  18. git reset HEAD~ ↔ to undo last Commit & keep Diff

  19. git reset --soft HEAD~1 ↔ to undo Commit & keep Diff in Staging index