Daily Shaarli
May 9, 2019
git grep "the magic string" git show-ref --heads
c5cd1d8:path/to/file.js:let a = "the magic string"
git branch --contains c5cd1d8
correct a recent commit:
git stash; git rebase -i HEAD~insert_commit_history_depth
top commit line to "edit" then
git stash pop; git add .; git rebase --continue