From cf1ccd6f39f186d8864642021b02b80f3a821451 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Mon, 15 May 2023 15:49:55 +0300 Subject: [PATCH] Feat(cheat): personal/git-alias --- config/cheat/cheatsheets/personal/git-alias | 43 +++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 config/cheat/cheatsheets/personal/git-alias diff --git a/config/cheat/cheatsheets/personal/git-alias b/config/cheat/cheatsheets/personal/git-alias new file mode 100644 index 0000000..3af62aa --- /dev/null +++ b/config/cheat/cheatsheets/personal/git-alias @@ -0,0 +1,43 @@ +--- +tags: [ vcs, alias ] +--- + +# git branchbydate + +List repository branches by date when last updated and extra information. + +# git branchcolor + +List repository branches sorted by when they were last updated. + +# git llog + +Show log with fuller information. + +# git logs + +Git logs with detailed information and git tree. + +# git nah + +Reset all changes. + +# git reset-origin + +Reset to origin. + +# git reset-upstream + +Hard reset to upstream master. + +# git rl + +Colored reflog. + +# git tagdate + +List tags in date order and with graph. + +# git undo-commit + +Undoes last commit.