From ef835d95a48c4589faf72374748ee3ba0235c90a Mon Sep 17 00:00:00 2001 From: Brandon Dusch Date: Wed, 20 Nov 2024 17:52:48 -0500 Subject: [PATCH] Update changing-a-commit-message.md --- .../creating-and-editing-commits/changing-a-commit-message.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md b/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md index f247e56b44..d8db826d4f 100644 --- a/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md +++ b/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md @@ -110,7 +110,7 @@ If you need to amend the message for multiple commits or an older commit, you ca git push --force origin EXAMPLE-BRANCH ``` -For more information on interactive rebase, see "[Interactive mode](https://git-scm.com/docs/git-rebase#_interactive_mode)" in the Git manual. +For more information on interactive rebase, see [Interactive mode](https://git-scm.com/docs/git-rebase#_interactive_mode) in the Git manual. {% tip %}