From ac1cf5a17a5d763898ede1e7c75ec1c1df5b933b Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Tue, 28 Jan 2025 22:41:37 +0100 Subject: [PATCH] docs: git: move under `vcs` folder --- docs/misc/{ => vcs}/git.md | 2 +- mkdocs.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename docs/misc/{ => vcs}/git.md (99%) diff --git a/docs/misc/git.md b/docs/misc/vcs/git.md similarity index 99% rename from docs/misc/git.md rename to docs/misc/vcs/git.md index 4e1e319..b9f5b08 100644 --- a/docs/misc/git.md +++ b/docs/misc/vcs/git.md @@ -170,7 +170,7 @@ It's generally recommended creating annotated tags so it's possible to have all ### Branching And Merging -![branch](../img/git_branches.avif "how branches work") +![branch](../../img/git_branches.avif "how branches work") `git branch`: shows branches `git branch -vv`: show branch + last commit + remote status diff --git a/mkdocs.yml b/mkdocs.yml index 304b62e..305d39e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -184,7 +184,8 @@ nav: - Scripting: languages/bash/scripting.md - Commands: languages/bash/commands.md - Misc: - - Git: misc/git.md + - VCS: + - Git: misc/vcs/git.md - GraphQL: misc/graph-ql.md - RegEx: misc/regular-expressions.md - SSH: misc/ssh.md