From a0ac51e859597946e296bd85a4d12f4d1ddcd06d Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 6 Oct 2023 14:26:54 +0200 Subject: [PATCH] add git clean notes Signed-off-by: Marcello Lamonaca --- docs/misc/git.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/misc/git.md b/docs/misc/git.md index c751fb2..1e4abf5 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -94,8 +94,7 @@ def load_reference(name_or_id): ### Config `git config --global user.name ""`: set name attached to commits -`git config --global user.email ""`: set email attached to commits -`git config --global color.ui auto`: enable colorization of command line output +`git config --global user.email ""`: set email attached to commits ### Making Changes @@ -177,7 +176,6 @@ When either `` or `` is omitted, it defaults to HEAD. `git log ...`: Include commits that are reachable from either `` or `` but exclude those that are reachable from both. When either `` or `` is omitted, it defaults to HEAD. `git log ^@`: Include anything reachable from `` parents but not the commit itself - `git shortlog`: list commits by author `git reflog`: show record of when the tips of branches and other references were updated in the local repository @@ -211,7 +209,7 @@ It's generally recommended creating annotated tags so it's possible to have all ### Branching And Merging -![branch](img/git_branches.png "how branches work") +![branch](../img/git_branches.png "how branches work") `git branch`: shows branches `git branch -vv`: show branch + last commit + remote status @@ -245,6 +243,10 @@ It's generally recommended creating annotated tags so it's possible to have all `git reset --soft `: revert to specific commit but keep changes and staged files `git reset --hard `: discard all history and changes back to specified commit +`git clean`: remove untracked files form the working tree +`git clean -d`: recurse into untracked directories while cleaning +`git clean --interactive`: clean files interactively + `git checkout `: discard changes `git checkout -- `: discard changes, no output to screen `git restore .`: discard uncommitted changes