IT Nursery
One of the commands I find incredibly useful in Git is git add -u to throw everything but untracked files into the index. Is there an inverse of that?...
  • June 1, 2022
  • 0 Comments
Say I have a file in my git repository called foo. Suppose it has been deleted with rm (not git rm). Then git status will show: Changes not staged...
  • April 30, 2022
  • 0 Comments
I have a bunch of files in a changeset, but I want to specifically ignore a single modified file. Looks like this after git status: # modified: main/dontcheckmein.txt #...
  • April 24, 2022
  • 0 Comments