blog/todo-recipes/git.md
2021-03-09 03:40:32 -08:00

400 B

git

everyone's favourite VCS

what's going on between these two branches

relevant: man gitrevisions

print commits in develop but not in main

git log origin/main..origin/develop

git reset --hard a directory

source

git restore --source=HEAD --staged --worktree -- aDirectory
# or, shorter
git restore -s@ -SW  -- aDirectory