Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 823 Bytes

File metadata and controls

19 lines (12 loc) · 823 Bytes

hackerrank-problems

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.

Some Useful Git Commands

  • 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 directory
  • git commit -am [message] updates tracked files (including deletions), commits with message
  • git commit -m [message] commits with message
  • git commit --amend revises previous commit
  • git rm --cached -r [file/directory] removes from repo while keeping locally