From 4ac3dd77b34fbc827f25e0d899625f3c495e891e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ar=C4=B1l=C4=B1k?= Date: Fri, 21 Jul 2023 16:07:51 +0300 Subject: [PATCH 1/2] refactor(git.md): make git-scm links clickable Some of them wasn't clickable. --- src/git.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git.md b/src/git.md index ae5f2292a..5b6fa20a7 100644 --- a/src/git.md +++ b/src/git.md @@ -167,7 +167,7 @@ error: cannot rebase: You have unstaged changes. error: Please commit or stash them. ``` -(See https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states for the difference between the two.) +(See [https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states](https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states) for the difference between the two.) This means you have made changes since the last time you made a commit. To be able to rebase, either commit your changes, or make a temporary commit called a "stash" to have them still not be commited @@ -178,7 +178,7 @@ will prevent the "cannot rebase" error in nearly all cases: git config --global rebase.autostash true ``` -See https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning for more info about stashing. +See [https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning](https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning) for more info about stashing. ### I see 'Untracked Files: src/stdarch'? From a34ac6602d5dffd3532f17bafb0e3f935680719e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ar=C4=B1l=C4=B1k?= Date: Sat, 22 Jul 2023 12:54:50 +0300 Subject: [PATCH 2/2] refactor(git.md) use `<>` instead of long `[...](...)` syntax for plain links --- src/git.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git.md b/src/git.md index 5b6fa20a7..2e8f9d974 100644 --- a/src/git.md +++ b/src/git.md @@ -167,7 +167,7 @@ error: cannot rebase: You have unstaged changes. error: Please commit or stash them. ``` -(See [https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states](https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states) for the difference between the two.) +(See for the difference between the two.) This means you have made changes since the last time you made a commit. To be able to rebase, either commit your changes, or make a temporary commit called a "stash" to have them still not be commited @@ -178,7 +178,7 @@ will prevent the "cannot rebase" error in nearly all cases: git config --global rebase.autostash true ``` -See [https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning](https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning) for more info about stashing. +See for more info about stashing. ### I see 'Untracked Files: src/stdarch'?