From 1402508a7c524968bb21d270e644f2593cc9e29a Mon Sep 17 00:00:00 2001 From: Muhammad Sameer Ali <32276372+msali123@users.noreply.github.com> Date: Sat, 23 Sep 2023 16:35:08 +0000 Subject: [PATCH] Post lint errors --- blog/_posts/2023-09-28-advanced-git-commands-2.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/blog/_posts/2023-09-28-advanced-git-commands-2.md b/blog/_posts/2023-09-28-advanced-git-commands-2.md index cedc7b3af..cedbd297d 100644 --- a/blog/_posts/2023-09-28-advanced-git-commands-2.md +++ b/blog/_posts/2023-09-28-advanced-git-commands-2.md @@ -35,7 +35,7 @@ git remote ~~~
-![showing remotes names associated with the repository]({{site.images}}{{page.slug}}/x0ODzpJ.png) +![Showing remotes names associated with the repository]({{site.images}}{{page.slug}}/x0ODzpJ.png)
The output shows the remote names associated with season-of_docs repository which are `oyedeletemitope` and `origin` are remote names associated with this repository. @@ -49,7 +49,7 @@ git remote -v This will show you each remote's name, the repository's URL, and the fetch and push URLs like so:
-![result]({{site.images}}{{page.slug}}/x0ODzpJ.png) +![Result]({{site.images}}{{page.slug}}/x0ODzpJ.png)
To connect your local repository with a remote repository, you use the Git remote add command: @@ -87,7 +87,7 @@ Based on the outcome of your tests, you provide feedback to Git using either `gi Git continues this process, automatically selecting commits for you to test and adjusting the search range until it pinpoints the specific commit that introduced the bug.
-![how the git bisect works]({{site.images}}{{page.slug}}/vNDp0lX.jpg) +![How the git bisect works]({{site.images}}{{page.slug}}/vNDp0lX.jpg)
~~~{.bash caption=">_"} @@ -142,7 +142,7 @@ git checkout Let's see some use cases of `git checkout`: -### Switching to an Existing Branch +### Switching To An Existing Branch Let's say you have an existing branch called `another-branch` and want to switch to that branch. You can use the following command: @@ -183,7 +183,7 @@ git branch This command will display a list of branches with an asterisk (*) indicating the current branch you are on:
-![displaying the list of branches]({{site.images}}{{page.slug}}/Ktwgmn5.png) +![Displaying the list of branches]({{site.images}}{{page.slug}}/Ktwgmn5.png)
To create a new branch, you can use the following syntax: