diff --git a/snippets/branches-containing-commit.md b/snippets/branches-containing-commit.md index 58c4ce6ba..b24e14e2f 100644 --- a/snippets/branches-containing-commit.md +++ b/snippets/branches-containing-commit.md @@ -1,6 +1,6 @@ --- title: Find branches containing a commit -tags: branch,commit,beginner +tags: branch,commit,intermediate --- Prints all the branches containing a specific commit. diff --git a/snippets/branches-not-containing-commit.md b/snippets/branches-not-containing-commit.md index e6cffc3e1..af4bb5fdd 100644 --- a/snippets/branches-not-containing-commit.md +++ b/snippets/branches-not-containing-commit.md @@ -1,6 +1,6 @@ --- title: Find branches not containing a commit -tags: branch,commit,beginner +tags: branch,commit,intermediate --- Prints all the branches not containing a specific commit. diff --git a/snippets/delete-branch.md b/snippets/delete-branch.md index ddf85306d..0f21c4938 100644 --- a/snippets/delete-branch.md +++ b/snippets/delete-branch.md @@ -1,6 +1,6 @@ --- title: Delete a branch -tags: repository,branch,beginner +tags: repository,branch,intermediate --- Deletes a local branch. diff --git a/snippets/rebase-onto-branch.md b/snippets/rebase-onto-branch.md index 232413008..001266b40 100644 --- a/snippets/rebase-onto-branch.md +++ b/snippets/rebase-onto-branch.md @@ -1,6 +1,6 @@ --- title: Rebase onto another branch -tags: branch,intermediate +tags: branch,advanced --- Rebases the current branch onto another branch. diff --git a/snippets/rename-branch.md b/snippets/rename-branch.md index 7289b4c48..1b4d01e46 100644 --- a/snippets/rename-branch.md +++ b/snippets/rename-branch.md @@ -1,6 +1,6 @@ --- title: Rename a branch -tags: branch,beginner +tags: branch,intermediate --- Renames a local branch. diff --git a/snippets/rename-remote-branch.md b/snippets/rename-remote-branch.md index 0caa72e37..00833d22a 100644 --- a/snippets/rename-remote-branch.md +++ b/snippets/rename-remote-branch.md @@ -1,6 +1,6 @@ --- title: Rename remote branch -tags: branch,intermediate +tags: branch,advanced --- Renames a branch both locally and on the remote. diff --git a/snippets/update-commit-contents.md b/snippets/update-commit-contents.md index 5e3c1e438..93612287a 100644 --- a/snippets/update-commit-contents.md +++ b/snippets/update-commit-contents.md @@ -1,6 +1,6 @@ --- title: Edit the last commit -tags: commit,beginner +tags: commit,intermediate --- Updates the last commit's contents without changing its message. diff --git a/snippets/update-commit-message.md b/snippets/update-commit-message.md index df7211752..afebe044b 100644 --- a/snippets/update-commit-message.md +++ b/snippets/update-commit-message.md @@ -1,6 +1,6 @@ --- title: Change the last commit's message -tags: commit,beginner +tags: commit,intermediate --- Updates the last commit's message without changing its contents. diff --git a/snippets/view-commits-by-author.md b/snippets/view-commits-by-author.md index b90f400ff..3c92c8f5d 100644 --- a/snippets/view-commits-by-author.md +++ b/snippets/view-commits-by-author.md @@ -1,6 +1,6 @@ --- title: View commits by author -tags: repository,commit,beginner +tags: repository,commit,intermediate --- Prints all commits by the specified author. diff --git a/snippets/view-commits-summary.md b/snippets/view-commits-summary.md index de0d0f170..bf57b671f 100644 --- a/snippets/view-commits-summary.md +++ b/snippets/view-commits-summary.md @@ -1,6 +1,6 @@ --- title: View a short summary of commits -tags: repository,commit,beginner +tags: repository,commit,intermediate --- Prints a short summary of all commits. diff --git a/snippets/view-last-commit.md b/snippets/view-last-commit.md index 5c4385574..bdefdffdd 100644 --- a/snippets/view-last-commit.md +++ b/snippets/view-last-commit.md @@ -1,6 +1,6 @@ --- title: View last commit -tags: commit,beginner +tags: commit,intermediate --- Prints the last commit. diff --git a/snippets/view-merged-branches.md b/snippets/view-merged-branches.md index ec45e86f8..bd6ada546 100644 --- a/snippets/view-merged-branches.md +++ b/snippets/view-merged-branches.md @@ -1,6 +1,6 @@ --- title: View merged branches -tags: repository,branch,beginner +tags: repository,branch,intermediate --- Prints a list of all merged local branches.