Assorted problems from and tools for HackerRank, CodeForces, and LeetCode.
The Makefile
uses inotifywait
which is part of inotify-tools
.
Detailed installation instructions found at inotify-tools.
git add --ignore-removal .
updates tracked files (ignore deletions)git add -u
updates tracked files (including deletions)git add .
updates tracked files (including deletions), adds any new files in directorygit commit -am [message]
updates tracked files (including deletions), commits with messagegit commit -m [message]
commits with messagegit commit --amend
revises previous commitgit rm --cached -r [file/directory]
removes from repo while keeping locally