From 0c0c51257649d77e7135501946cfba91a43f3dc3 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 18 Sep 2023 10:51:28 +0200 Subject: [PATCH] chore: move file under 'misc' folder --- docs/{ => misc}/git.md | 2 +- docs/{ => misc}/graph-ql.md | 0 docs/{ => misc}/regular-expressions.md | 0 mkdocs.yml | 6 +++--- 4 files changed, 4 insertions(+), 4 deletions(-) rename docs/{ => misc}/git.md (99%) rename docs/{ => misc}/graph-ql.md (100%) rename docs/{ => misc}/regular-expressions.md (100%) diff --git a/docs/git.md b/docs/misc/git.md similarity index 99% rename from docs/git.md rename to docs/misc/git.md index c751fb2..5a235c2 100644 --- a/docs/git.md +++ b/docs/misc/git.md @@ -211,7 +211,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 diff --git a/docs/graph-ql.md b/docs/misc/graph-ql.md similarity index 100% rename from docs/graph-ql.md rename to docs/misc/graph-ql.md diff --git a/docs/regular-expressions.md b/docs/misc/regular-expressions.md similarity index 100% rename from docs/regular-expressions.md rename to docs/misc/regular-expressions.md diff --git a/mkdocs.yml b/mkdocs.yml index c322f0c..8d65e1c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -180,6 +180,6 @@ nav: - iOS: - ContentView: devices/ios/content-view.md - Misc: - - Git: git.md - - GraphQL: graph-ql.md - - RegEx: regular-expressions.md \ No newline at end of file + - Git: misc/git.md + - GraphQL: misc/graph-ql.md + - RegEx: misc/regular-expressions.md \ No newline at end of file