From ee289293282248a3a171021fc224e9e54fb2c7e9 Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Tue, 1 Mar 2022 20:23:46 +0200 Subject: [PATCH] Make expertise a field --- CONTRIBUTING.md | 3 ++- snippet-template.md | 3 ++- snippets/add-submodule.md | 3 ++- snippets/apply-latest-stash.md | 3 ++- snippets/apply-stash.md | 3 ++- snippets/autocorrect.md | 3 ++- snippets/automatic-find-commit-with-bug.md | 3 ++- snippets/branches-containing-commit.md | 3 ++- snippets/branches-not-containing-commit.md | 3 ++- snippets/change-remote-url.md | 3 ++- snippets/clone-missing-submodules.md | 3 ++- snippets/clone-repo.md | 3 ++- snippets/commit-set-author.md | 3 ++- snippets/commit-template.md | 3 ++- snippets/commit-without-hooks.md | 3 ++- snippets/config-user.md | 3 ++- snippets/copy-file-from-branch.md | 3 ++- snippets/create-branch.md | 3 ++- snippets/create-commit.md | 3 ++- snippets/create-empty-commit.md | 3 ++- snippets/create-fixup-commit.md | 3 ++- snippets/create-repo.md | 3 ++- snippets/current-branch-name.md | 3 ++- snippets/delete-branch.md | 3 ++- snippets/delete-detached-branches.md | 3 ++- snippets/delete-merged-branches.md | 3 ++- snippets/delete-remote-branch.md | 3 ++- snippets/delete-stash.md | 3 ++- snippets/delete-stashes.md | 3 ++- snippets/delete-submodule.md | 3 ++- snippets/difference-between-branches.md | 3 ++- snippets/disable-fast-forward.md | 3 ++- snippets/discard-uncommitted.md | 3 ++- snippets/discard-untracked.md | 3 ++- snippets/edit-config.md | 3 ++- snippets/fetch-changes.md | 3 ++- snippets/find-lost-files.md | 3 ++- snippets/force-update-remote-branch.md | 3 ++- snippets/interactive-rebase.md | 3 ++- snippets/line-endings.md | 3 ++- snippets/list-aliases.md | 3 ++- snippets/list-stashes.md | 3 ++- snippets/manual-find-commit-with-bug.md | 3 ++- snippets/merge-branch-merge-commit.md | 3 ++- snippets/merge-branch.md | 3 ++- snippets/move-commits-to-branch.md | 3 ++- snippets/optimize-repository.md | 3 ++- snippets/pick-commits.md | 3 ++- snippets/pull-all-submodules.md | 3 ++- snippets/pull-changes.md | 3 ++- snippets/purge-file.md | 3 ++- snippets/push-changes.md | 3 ++- snippets/rebase-onto-branch.md | 3 ++- snippets/remove-file-from-commit.md | 3 ++- snippets/rename-branch.md | 3 ++- snippets/rename-remote-branch.md | 3 ++- snippets/reset-master.md | 3 ++- snippets/restore-deleted-file.md | 3 ++- snippets/rewind-n-commits.md | 3 ++- snippets/rewind-to-commit.md | 3 ++- snippets/save-stash.md | 3 ++- snippets/set-default-push-branch.md | 3 ++- snippets/set-text-editor.md | 3 ++- snippets/sort-branches-by-date.md | 3 ++- snippets/stage-files.md | 3 ++- snippets/switch-to-branch.md | 3 ++- snippets/switch-to-last-branch.md | 3 ++- snippets/undo-commit.md | 3 ++- snippets/undo-last-commit.md | 3 ++- snippets/unstage-files.md | 3 ++- snippets/update-commit-contents.md | 3 ++- snippets/update-commit-message.md | 3 ++- snippets/view-all-branches.md | 3 ++- snippets/view-changes-summary.md | 3 ++- snippets/view-commit-graph.md | 3 ++- snippets/view-commits-by-author.md | 3 ++- snippets/view-commits-by-string.md | 3 ++- snippets/view-commits-in-date-range.md | 3 ++- snippets/view-commits-summary-no-merges.md | 3 ++- snippets/view-commits-summary.md | 3 ++- snippets/view-differences.md | 3 ++- snippets/view-last-commit.md | 3 ++- snippets/view-merged-branches.md | 3 ++- snippets/view-remote-url.md | 3 ++- snippets/view-status.md | 3 ++- snippets/view-undo-history.md | 3 ++- 86 files changed, 172 insertions(+), 86 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd9542cdf..0c752c06a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,8 @@ In order to create a new snippet, you should follow the steps below: - Snippet must follow [these general writing guidelines](https://github.com/30-seconds/brand-and-design/blob/master/writing-guidelines.md). - Snippets must have all their frontmatter sections (title, tags etc.) filled. - Snippet titles must correspond to the filename and follow the language and repository's naming conventions. -- Snippet tags must be comma-separated, contain a primary tag as seen on the website as their first tag and an expertise tag (`beginner`, `intermediate` or `advanced`) as their last tag. +- Snippet tags must be comma-separated, contain a primary tag as seen on the website as their first tag. +- Snippet expertise must be specified (`beginner`, `intermediate` or `advanced`). - Snippets must have their `firstSeen` dates formatted using [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). - Snippet descriptions must be short and to the point. Explain *what* the snippet does and detail *how* the snippet works and the language features used in it. - Snippet code and examples must be enclosed in appropriate, language-tagged blocks as shown in the snippet template, be short and use modern techniques and features. Also make sure to test your code before submitting. diff --git a/snippet-template.md b/snippet-template.md index b5902fae6..6d54209fc 100644 --- a/snippet-template.md +++ b/snippet-template.md @@ -1,6 +1,7 @@ --- title: Snippet name -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-06-13T05:00:00-04:00 --- diff --git a/snippets/add-submodule.md b/snippets/add-submodule.md index a5d579850..5803d00a2 100644 --- a/snippets/add-submodule.md +++ b/snippets/add-submodule.md @@ -1,6 +1,7 @@ --- title: Add a submodule -tags: repository,submodule,advanced +tags: repository,submodule +expertise: advanced firstSeen: 2021-04-08T20:05:15+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/apply-latest-stash.md b/snippets/apply-latest-stash.md index 3be0af55d..78ffa95b0 100644 --- a/snippets/apply-latest-stash.md +++ b/snippets/apply-latest-stash.md @@ -1,6 +1,7 @@ --- title: Apply the latest stash -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/apply-stash.md b/snippets/apply-stash.md index 21b5a59af..ecb1bb53a 100644 --- a/snippets/apply-stash.md +++ b/snippets/apply-stash.md @@ -1,6 +1,7 @@ --- title: Apply a stash -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/autocorrect.md b/snippets/autocorrect.md index 0c36f524d..7bd1ce7fb 100644 --- a/snippets/autocorrect.md +++ b/snippets/autocorrect.md @@ -1,6 +1,7 @@ --- title: Autocorrect git commands -tags: configuration,intermediate +tags: configuration +expertise: intermediate firstSeen: 2021-04-06T20:58:33+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/automatic-find-commit-with-bug.md b/snippets/automatic-find-commit-with-bug.md index 5cc2765ed..11b1fd40a 100644 --- a/snippets/automatic-find-commit-with-bug.md +++ b/snippets/automatic-find-commit-with-bug.md @@ -1,6 +1,7 @@ --- title: Automatically find the commit that introduced a bug -tags: commit,branch,advanced +tags: commit,branch +expertise: advanced firstSeen: 2021-04-13T20:00:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/branches-containing-commit.md b/snippets/branches-containing-commit.md index 3f6d6b0d9..edf2072a5 100644 --- a/snippets/branches-containing-commit.md +++ b/snippets/branches-containing-commit.md @@ -1,6 +1,7 @@ --- title: Find branches containing a commit -tags: branch,commit,intermediate +tags: branch,commit +expertise: intermediate firstSeen: 2021-04-05T09:47:59+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/branches-not-containing-commit.md b/snippets/branches-not-containing-commit.md index c16a6f363..02aa012f2 100644 --- a/snippets/branches-not-containing-commit.md +++ b/snippets/branches-not-containing-commit.md @@ -1,6 +1,7 @@ --- title: Find branches not containing a commit -tags: branch,commit,intermediate +tags: branch,commit +expertise: intermediate firstSeen: 2021-04-05T09:47:59+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/change-remote-url.md b/snippets/change-remote-url.md index 725740222..632fb6ed2 100644 --- a/snippets/change-remote-url.md +++ b/snippets/change-remote-url.md @@ -1,6 +1,7 @@ --- title: Change the remote URL -tags: repository,intermediate +tags: repository +expertise: intermediate firstSeen: 2021-04-08T19:42:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/clone-missing-submodules.md b/snippets/clone-missing-submodules.md index ee0f8dbb2..a09a183db 100644 --- a/snippets/clone-missing-submodules.md +++ b/snippets/clone-missing-submodules.md @@ -1,6 +1,7 @@ --- title: Clone missing submodules -tags: repository,submodule,advanced +tags: repository,submodule +expertise: advanced firstSeen: 2021-04-08T20:05:15+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/clone-repo.md b/snippets/clone-repo.md index e4e6e03b7..9035e7f87 100644 --- a/snippets/clone-repo.md +++ b/snippets/clone-repo.md @@ -1,6 +1,7 @@ --- title: Clone a repository -tags: repository,remote,beginner +tags: repository,remote +expertise: beginner firstSeen: 2021-04-04T14:04:05+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/commit-set-author.md b/snippets/commit-set-author.md index 99b6f484a..36fa0dd28 100644 --- a/snippets/commit-set-author.md +++ b/snippets/commit-set-author.md @@ -1,6 +1,7 @@ --- title: Create a commit by a different author -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-13T20:07:27+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/commit-template.md b/snippets/commit-template.md index 4b41aa530..446bddfbc 100644 --- a/snippets/commit-template.md +++ b/snippets/commit-template.md @@ -1,6 +1,7 @@ --- title: Add a commit message template -tags: repository,configuration,advanced +tags: repository,configuration +expertise: advanced firstSeen: 2021-04-06T21:35:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/commit-without-hooks.md b/snippets/commit-without-hooks.md index 095fb1d36..ae2198dcc 100644 --- a/snippets/commit-without-hooks.md +++ b/snippets/commit-without-hooks.md @@ -1,6 +1,7 @@ --- title: Commit without running git hooks -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-04T20:55:26+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/config-user.md b/snippets/config-user.md index f8170033e..0f2a0b279 100644 --- a/snippets/config-user.md +++ b/snippets/config-user.md @@ -1,6 +1,7 @@ --- title: Configure git user information -tags: configuration,repository,beginner +tags: configuration,repository +expertise: beginner firstSeen: 2021-04-04T21:25:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/copy-file-from-branch.md b/snippets/copy-file-from-branch.md index 9f95678cc..6db7c4ba9 100644 --- a/snippets/copy-file-from-branch.md +++ b/snippets/copy-file-from-branch.md @@ -1,6 +1,7 @@ --- title: Copy a file from another branch -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-06T20:58:25+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/create-branch.md b/snippets/create-branch.md index 3155202c6..f4c066cee 100644 --- a/snippets/create-branch.md +++ b/snippets/create-branch.md @@ -1,6 +1,7 @@ --- title: Create a new branch -tags: branch,remote,beginner +tags: branch,remote +expertise: beginner firstSeen: 2021-04-04T14:09:09+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/create-commit.md b/snippets/create-commit.md index 213e6673d..71002000d 100644 --- a/snippets/create-commit.md +++ b/snippets/create-commit.md @@ -1,6 +1,7 @@ --- title: Create a commit -tags: commit,beginner +tags: commit +expertise: beginner firstSeen: 2021-04-04T14:16:38+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/create-empty-commit.md b/snippets/create-empty-commit.md index 524f82f73..2d7a69e05 100644 --- a/snippets/create-empty-commit.md +++ b/snippets/create-empty-commit.md @@ -1,6 +1,7 @@ --- title: Create an empty commit -tags: commit,beginner +tags: commit +expertise: beginner firstSeen: 2021-04-04T20:55:26+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/create-fixup-commit.md b/snippets/create-fixup-commit.md index 90bf9836c..98fbb6792 100644 --- a/snippets/create-fixup-commit.md +++ b/snippets/create-fixup-commit.md @@ -1,6 +1,7 @@ --- title: Create a fixup commit -tags: commit,advanced +tags: commit +expertise: advanced firstSeen: 2021-04-08T19:51:24+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/create-repo.md b/snippets/create-repo.md index 8b3ecc3b3..a8c313160 100644 --- a/snippets/create-repo.md +++ b/snippets/create-repo.md @@ -1,6 +1,7 @@ --- title: Create a new repository -tags: repository,beginner +tags: repository +expertise: beginner firstSeen: 2021-04-04T14:04:05+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/current-branch-name.md b/snippets/current-branch-name.md index ddea39b8e..4e47633b9 100644 --- a/snippets/current-branch-name.md +++ b/snippets/current-branch-name.md @@ -1,6 +1,7 @@ --- title: Get the current branch name -tags: branch,beginner +tags: branch +expertise: beginner firstSeen: 2021-04-04T21:50:46+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-branch.md b/snippets/delete-branch.md index 69e97a23d..213b2f3eb 100644 --- a/snippets/delete-branch.md +++ b/snippets/delete-branch.md @@ -1,6 +1,7 @@ --- title: Delete a branch -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-04T21:50:29+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-detached-branches.md b/snippets/delete-detached-branches.md index 35363e614..1668e87e3 100644 --- a/snippets/delete-detached-branches.md +++ b/snippets/delete-detached-branches.md @@ -1,6 +1,7 @@ --- title: Delete detached branches -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-08T19:42:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-merged-branches.md b/snippets/delete-merged-branches.md index b6288456d..4903292e8 100644 --- a/snippets/delete-merged-branches.md +++ b/snippets/delete-merged-branches.md @@ -1,6 +1,7 @@ --- title: Delete merged branches -tags: repository,branch,advanced +tags: repository,branch +expertise: advanced firstSeen: 2021-04-08T19:42:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-remote-branch.md b/snippets/delete-remote-branch.md index efef3399c..db1509b2f 100644 --- a/snippets/delete-remote-branch.md +++ b/snippets/delete-remote-branch.md @@ -1,6 +1,7 @@ --- title: Delete a remote branch -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-08T19:42:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-stash.md b/snippets/delete-stash.md index 799e9c410..d0d331215 100644 --- a/snippets/delete-stash.md +++ b/snippets/delete-stash.md @@ -1,6 +1,7 @@ --- title: Delete a stash -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-stashes.md b/snippets/delete-stashes.md index 71d20976d..19d417b00 100644 --- a/snippets/delete-stashes.md +++ b/snippets/delete-stashes.md @@ -1,6 +1,7 @@ --- title: Delete all stashes -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/delete-submodule.md b/snippets/delete-submodule.md index 39dd6fdea..3880f81fb 100644 --- a/snippets/delete-submodule.md +++ b/snippets/delete-submodule.md @@ -1,6 +1,7 @@ --- title: Delete a submodule -tags: repository,submodule,advanced +tags: repository,submodule +expertise: advanced firstSeen: 2021-04-08T20:05:15+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/difference-between-branches.md b/snippets/difference-between-branches.md index 2c5ea43ca..e5794838f 100644 --- a/snippets/difference-between-branches.md +++ b/snippets/difference-between-branches.md @@ -1,6 +1,7 @@ --- title: View difference between two branches -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-08T16:30:44+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/disable-fast-forward.md b/snippets/disable-fast-forward.md index 327e4e976..0ca0e5776 100644 --- a/snippets/disable-fast-forward.md +++ b/snippets/disable-fast-forward.md @@ -1,6 +1,7 @@ --- title: Disable fast forward merging by default -tags: configuration,repository,intermediate +tags: configuration,repository +expertise: intermediate firstSeen: 2021-07-03T05:00:00-04:00 --- diff --git a/snippets/discard-uncommitted.md b/snippets/discard-uncommitted.md index ab9897914..ac92753db 100644 --- a/snippets/discard-uncommitted.md +++ b/snippets/discard-uncommitted.md @@ -1,6 +1,7 @@ --- title: Discard uncommitted changes -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-06T11:11:08+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/discard-untracked.md b/snippets/discard-untracked.md index 5ede22af6..de27e3823 100644 --- a/snippets/discard-untracked.md +++ b/snippets/discard-untracked.md @@ -1,6 +1,7 @@ --- title: Discard untracked changes -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-06T11:11:08+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/edit-config.md b/snippets/edit-config.md index 11907e08e..991c1e1f3 100644 --- a/snippets/edit-config.md +++ b/snippets/edit-config.md @@ -1,6 +1,7 @@ --- title: Edit git configuration file -tags: configuration,beginner +tags: configuration +expertise: beginner firstSeen: 2021-04-04T21:25:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/fetch-changes.md b/snippets/fetch-changes.md index 7128ccd0c..ddca7331f 100644 --- a/snippets/fetch-changes.md +++ b/snippets/fetch-changes.md @@ -1,6 +1,7 @@ --- title: Fetch latest changes from remote -tags: repository,beginner +tags: repository +expertise: beginner firstSeen: 2021-04-08T19:43:13+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/find-lost-files.md b/snippets/find-lost-files.md index 89b43eb5e..9d00cc155 100644 --- a/snippets/find-lost-files.md +++ b/snippets/find-lost-files.md @@ -1,6 +1,7 @@ --- title: Find lost files -tags: repository,advanced +tags: repository +expertise: advanced firstSeen: 2021-04-06T21:35:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/force-update-remote-branch.md b/snippets/force-update-remote-branch.md index 355074e59..17c7d2b10 100644 --- a/snippets/force-update-remote-branch.md +++ b/snippets/force-update-remote-branch.md @@ -1,6 +1,7 @@ --- title: Update remote branch after rewriting history -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-06T19:47:19+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/interactive-rebase.md b/snippets/interactive-rebase.md index 1fc656c62..5d1edc3f5 100644 --- a/snippets/interactive-rebase.md +++ b/snippets/interactive-rebase.md @@ -1,6 +1,7 @@ --- title: Perform an interactive rebase -tags: branch,advanced +tags: branch +expertise: advanced firstSeen: 2021-04-08T20:10:35+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/line-endings.md b/snippets/line-endings.md index 0d6abeafb..c5c3dfd78 100644 --- a/snippets/line-endings.md +++ b/snippets/line-endings.md @@ -1,6 +1,7 @@ --- title: Configure line endings -tags: repository,configuration,intermediate +tags: repository,configuration +expertise: intermediate firstSeen: 2021-04-06T21:35:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/list-aliases.md b/snippets/list-aliases.md index 8a12606d1..b5a54eaca 100644 --- a/snippets/list-aliases.md +++ b/snippets/list-aliases.md @@ -1,6 +1,7 @@ --- title: List all git aliases -tags: configuration,intermediate +tags: configuration +expertise: intermediate firstSeen: 2021-04-04T21:25:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/list-stashes.md b/snippets/list-stashes.md index 58b3fedce..c38e32529 100644 --- a/snippets/list-stashes.md +++ b/snippets/list-stashes.md @@ -1,6 +1,7 @@ --- title: Lists all stashes -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/manual-find-commit-with-bug.md b/snippets/manual-find-commit-with-bug.md index ee6c53b20..0f921abc1 100644 --- a/snippets/manual-find-commit-with-bug.md +++ b/snippets/manual-find-commit-with-bug.md @@ -1,6 +1,7 @@ --- title: Manually find the commit that introduced a bug -tags: commit,branch,advanced +tags: commit,branch +expertise: advanced firstSeen: 2021-04-13T20:00:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/merge-branch-merge-commit.md b/snippets/merge-branch-merge-commit.md index 5dedcdd3a..85a1b2b1b 100644 --- a/snippets/merge-branch-merge-commit.md +++ b/snippets/merge-branch-merge-commit.md @@ -1,6 +1,7 @@ --- title: Merge a branch and create a merge commit -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-04T21:50:11+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/merge-branch.md b/snippets/merge-branch.md index 10c7c1c91..eb4dcf661 100644 --- a/snippets/merge-branch.md +++ b/snippets/merge-branch.md @@ -1,6 +1,7 @@ --- title: Merge a branch -tags: repository,branch,beginner +tags: repository,branch +expertise: beginner firstSeen: 2021-04-04T21:50:11+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/move-commits-to-branch.md b/snippets/move-commits-to-branch.md index 90351445d..61834093e 100644 --- a/snippets/move-commits-to-branch.md +++ b/snippets/move-commits-to-branch.md @@ -1,6 +1,7 @@ --- title: Move commits from master to a new branch -tags: branch,repository,intermediate +tags: branch,repository +expertise: intermediate firstSeen: 2021-04-06T21:35:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/optimize-repository.md b/snippets/optimize-repository.md index e86dfae1e..3f2a1cd28 100644 --- a/snippets/optimize-repository.md +++ b/snippets/optimize-repository.md @@ -1,6 +1,7 @@ --- title: Optimize the local repository -tags: repository,advanced +tags: repository +expertise: advanced firstSeen: 2021-04-08T19:42:43+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/pick-commits.md b/snippets/pick-commits.md index a66810bd3..21a5ddb81 100644 --- a/snippets/pick-commits.md +++ b/snippets/pick-commits.md @@ -1,6 +1,7 @@ --- title: Pick changes from one or more commits -tags: commit,branch,intermediate +tags: commit,branch +expertise: intermediate firstSeen: 2021-04-08T16:42:37+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/pull-all-submodules.md b/snippets/pull-all-submodules.md index 964cf83c7..57621ce48 100644 --- a/snippets/pull-all-submodules.md +++ b/snippets/pull-all-submodules.md @@ -1,6 +1,7 @@ --- title: Pull all submodules from remote -tags: repository,submodule,advanced +tags: repository,submodule +expertise: advanced firstSeen: 2021-04-08T20:05:15+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/pull-changes.md b/snippets/pull-changes.md index 2b8dad551..7629cde71 100644 --- a/snippets/pull-changes.md +++ b/snippets/pull-changes.md @@ -1,6 +1,7 @@ --- title: Pull latest changes from remote -tags: repository,branch,beginner +tags: repository,branch +expertise: beginner firstSeen: 2021-04-08T19:42:23+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/purge-file.md b/snippets/purge-file.md index ec216a32f..597e37b5f 100644 --- a/snippets/purge-file.md +++ b/snippets/purge-file.md @@ -1,6 +1,7 @@ --- title: Purge a file from history -tags: repository,remote,advanced +tags: repository,remote +expertise: advanced firstSeen: 2021-04-13T20:20:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/push-changes.md b/snippets/push-changes.md index 0714d9722..372682477 100644 --- a/snippets/push-changes.md +++ b/snippets/push-changes.md @@ -1,6 +1,7 @@ --- title: Push local changes to remote -tags: repository,branch,beginner +tags: repository,branch +expertise: beginner firstSeen: 2021-04-08T19:42:23+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/rebase-onto-branch.md b/snippets/rebase-onto-branch.md index a281ff156..bd9157c1f 100644 --- a/snippets/rebase-onto-branch.md +++ b/snippets/rebase-onto-branch.md @@ -1,6 +1,7 @@ --- title: Rebase onto another branch -tags: branch,advanced +tags: branch +expertise: advanced firstSeen: 2021-04-05T11:19:54+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/remove-file-from-commit.md b/snippets/remove-file-from-commit.md index 796b19990..85993364b 100644 --- a/snippets/remove-file-from-commit.md +++ b/snippets/remove-file-from-commit.md @@ -1,6 +1,7 @@ --- title: Remove a file from the last commit -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-05T11:19:41+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/rename-branch.md b/snippets/rename-branch.md index 1ef9ea2bd..8e1dc97f8 100644 --- a/snippets/rename-branch.md +++ b/snippets/rename-branch.md @@ -1,6 +1,7 @@ --- title: Rename a branch -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-05T09:48:16+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/rename-remote-branch.md b/snippets/rename-remote-branch.md index 7600897f4..57c68f2f7 100644 --- a/snippets/rename-remote-branch.md +++ b/snippets/rename-remote-branch.md @@ -1,6 +1,7 @@ --- title: Rename remote branch -tags: branch,advanced +tags: branch +expertise: advanced firstSeen: 2021-04-05T09:48:16+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/reset-master.md b/snippets/reset-master.md index 3c38a3463..21634f0c2 100644 --- a/snippets/reset-master.md +++ b/snippets/reset-master.md @@ -1,6 +1,7 @@ --- title: Reset master to match remote -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-06T16:58:58+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/restore-deleted-file.md b/snippets/restore-deleted-file.md index 0aeaf52af..e83a02bac 100644 --- a/snippets/restore-deleted-file.md +++ b/snippets/restore-deleted-file.md @@ -1,6 +1,7 @@ --- title: Restore a deleted file -tags: branch,intermediate +tags: branch +expertise: intermediate firstSeen: 2021-04-06T20:58:25+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/rewind-n-commits.md b/snippets/rewind-n-commits.md index feb31c962..f088d68e5 100644 --- a/snippets/rewind-n-commits.md +++ b/snippets/rewind-n-commits.md @@ -1,6 +1,7 @@ --- title: Rewind back n commits -tags: branch,commit,intermediate +tags: branch,commit +expertise: intermediate firstSeen: 2021-04-05T11:19:21+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/rewind-to-commit.md b/snippets/rewind-to-commit.md index 0d379faa9..2d3456448 100644 --- a/snippets/rewind-to-commit.md +++ b/snippets/rewind-to-commit.md @@ -1,6 +1,7 @@ --- title: Rewind back to a specific commit -tags: branch,commit,intermediate +tags: branch,commit +expertise: intermediate firstSeen: 2021-04-05T11:19:21+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/save-stash.md b/snippets/save-stash.md index e9db3f428..482afbd44 100644 --- a/snippets/save-stash.md +++ b/snippets/save-stash.md @@ -1,6 +1,7 @@ --- title: Create a stash -tags: repository,stash,intermediate +tags: repository,stash +expertise: intermediate firstSeen: 2021-04-13T19:36:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/set-default-push-branch.md b/snippets/set-default-push-branch.md index 1f573395e..8ea99dc71 100644 --- a/snippets/set-default-push-branch.md +++ b/snippets/set-default-push-branch.md @@ -1,6 +1,7 @@ --- title: Set default push branch name -tags: configuration,branch,intermediate +tags: configuration,branch +expertise: intermediate firstSeen: 2021-06-30T05:00:00-04:00 --- diff --git a/snippets/set-text-editor.md b/snippets/set-text-editor.md index 1406f86a8..d75d0a1aa 100644 --- a/snippets/set-text-editor.md +++ b/snippets/set-text-editor.md @@ -1,6 +1,7 @@ --- title: Configure the git text editor -tags: configuration,intermediate +tags: configuration +expertise: intermediate firstSeen: 2021-04-04T21:25:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/sort-branches-by-date.md b/snippets/sort-branches-by-date.md index 5c336962d..20287312a 100644 --- a/snippets/sort-branches-by-date.md +++ b/snippets/sort-branches-by-date.md @@ -1,6 +1,7 @@ --- title: View branches sorted by date -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-06T21:35:01+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/stage-files.md b/snippets/stage-files.md index 40a186ef5..8ff9b52a7 100644 --- a/snippets/stage-files.md +++ b/snippets/stage-files.md @@ -1,6 +1,7 @@ --- title: Add files to the staging area -tags: commit,beginner +tags: commit +expertise: beginner firstSeen: 2021-04-06T16:39:37+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/switch-to-branch.md b/snippets/switch-to-branch.md index 362b1b006..ad4932957 100644 --- a/snippets/switch-to-branch.md +++ b/snippets/switch-to-branch.md @@ -1,6 +1,7 @@ --- title: Switch to a branch -tags: branch,beginner +tags: branch +expertise: beginner firstSeen: 2021-04-04T14:09:09+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/switch-to-last-branch.md b/snippets/switch-to-last-branch.md index 60a60e7a2..2922fc1fb 100644 --- a/snippets/switch-to-last-branch.md +++ b/snippets/switch-to-last-branch.md @@ -1,6 +1,7 @@ --- title: Return to previous branch -tags: branch,beginner +tags: branch +expertise: beginner firstSeen: 2021-04-04T14:13:31+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/undo-commit.md b/snippets/undo-commit.md index 09e548b12..b15f46514 100644 --- a/snippets/undo-commit.md +++ b/snippets/undo-commit.md @@ -1,6 +1,7 @@ --- title: Undo a commit -tags: commit,branch,intermediate +tags: commit,branch +expertise: intermediate firstSeen: 2021-04-06T16:54:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/undo-last-commit.md b/snippets/undo-last-commit.md index 5d3d97906..dca3751e6 100644 --- a/snippets/undo-last-commit.md +++ b/snippets/undo-last-commit.md @@ -1,6 +1,7 @@ --- title: Undo the last commit -tags: commit,branch,intermediate +tags: commit,branch +expertise: intermediate firstSeen: 2021-04-06T16:54:22+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/unstage-files.md b/snippets/unstage-files.md index 59bcaf2da..698a6f221 100644 --- a/snippets/unstage-files.md +++ b/snippets/unstage-files.md @@ -1,6 +1,7 @@ --- title: Remove files from the staging area -tags: commit,beginner +tags: commit +expertise: beginner firstSeen: 2021-04-06T19:38:51+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/update-commit-contents.md b/snippets/update-commit-contents.md index c9e29867f..9c03fc738 100644 --- a/snippets/update-commit-contents.md +++ b/snippets/update-commit-contents.md @@ -1,6 +1,7 @@ --- title: Edit the last commit -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-04T14:36:07+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/update-commit-message.md b/snippets/update-commit-message.md index 41941e731..1c754f995 100644 --- a/snippets/update-commit-message.md +++ b/snippets/update-commit-message.md @@ -1,6 +1,7 @@ --- title: Change the last commit's message -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-04T14:36:07+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-all-branches.md b/snippets/view-all-branches.md index a09364f65..463f6a826 100644 --- a/snippets/view-all-branches.md +++ b/snippets/view-all-branches.md @@ -1,6 +1,7 @@ --- title: View local branches -tags: repository,branch,beginner +tags: repository,branch +expertise: beginner firstSeen: 2021-04-04T14:05:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-changes-summary.md b/snippets/view-changes-summary.md index dde66128d..54468e9cb 100644 --- a/snippets/view-changes-summary.md +++ b/snippets/view-changes-summary.md @@ -1,6 +1,7 @@ --- title: View a summary of changes between two commits -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-06T22:21:04+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commit-graph.md b/snippets/view-commit-graph.md index 8e0d2c885..39d002694 100644 --- a/snippets/view-commit-graph.md +++ b/snippets/view-commit-graph.md @@ -1,6 +1,7 @@ --- title: View a visual graph of the repository -tags: repository,intermediate +tags: repository +expertise: intermediate firstSeen: 2021-04-06T16:28:49+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commits-by-author.md b/snippets/view-commits-by-author.md index 89ffd5304..a5db78478 100644 --- a/snippets/view-commits-by-author.md +++ b/snippets/view-commits-by-author.md @@ -1,6 +1,7 @@ --- title: View commits by author -tags: repository,commit,intermediate +tags: repository,commit +expertise: intermediate firstSeen: 2021-04-06T11:22:55+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commits-by-string.md b/snippets/view-commits-by-string.md index f484d1786..801c16e9f 100644 --- a/snippets/view-commits-by-string.md +++ b/snippets/view-commits-by-string.md @@ -1,6 +1,7 @@ --- title: View commits that manipulated a specific string -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-06T16:28:49+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commits-in-date-range.md b/snippets/view-commits-in-date-range.md index d9673832a..2b2b31ef7 100644 --- a/snippets/view-commits-in-date-range.md +++ b/snippets/view-commits-in-date-range.md @@ -1,6 +1,7 @@ --- title: View commits in a specific date range -tags: repository,commit,intermediate +tags: repository,commit +expertise: intermediate firstSeen: 2021-04-06T16:28:49+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commits-summary-no-merges.md b/snippets/view-commits-summary-no-merges.md index f10e7eb76..fbd7407b5 100644 --- a/snippets/view-commits-summary-no-merges.md +++ b/snippets/view-commits-summary-no-merges.md @@ -1,6 +1,7 @@ --- title: View a short summary of commits without merge commits -tags: repository,commit,intermediate +tags: repository,commit +expertise: intermediate firstSeen: 2021-04-06T11:22:55+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-commits-summary.md b/snippets/view-commits-summary.md index 45d93ff26..f5b9c3c24 100644 --- a/snippets/view-commits-summary.md +++ b/snippets/view-commits-summary.md @@ -1,6 +1,7 @@ --- title: View a short summary of commits -tags: repository,commit,intermediate +tags: repository,commit +expertise: intermediate firstSeen: 2021-04-06T11:22:55+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-differences.md b/snippets/view-differences.md index 1dc815140..69614d8f6 100644 --- a/snippets/view-differences.md +++ b/snippets/view-differences.md @@ -1,6 +1,7 @@ --- title: View differences in changes -tags: commit,branch,intermediate +tags: commit,branch +expertise: intermediate firstSeen: 2021-04-08T16:30:44+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-last-commit.md b/snippets/view-last-commit.md index 1a8ce9e3a..370f85280 100644 --- a/snippets/view-last-commit.md +++ b/snippets/view-last-commit.md @@ -1,6 +1,7 @@ --- title: View last commit -tags: commit,intermediate +tags: commit +expertise: intermediate firstSeen: 2021-04-06T11:22:55+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-merged-branches.md b/snippets/view-merged-branches.md index f98cf6810..333891aab 100644 --- a/snippets/view-merged-branches.md +++ b/snippets/view-merged-branches.md @@ -1,6 +1,7 @@ --- title: View merged branches -tags: repository,branch,intermediate +tags: repository,branch +expertise: intermediate firstSeen: 2021-04-08T19:43:13+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-remote-url.md b/snippets/view-remote-url.md index 02159e309..14954137e 100644 --- a/snippets/view-remote-url.md +++ b/snippets/view-remote-url.md @@ -1,6 +1,7 @@ --- title: View the remote URL -tags: repository,intermediate +tags: repository +expertise: intermediate firstSeen: 2021-04-08T19:42:57+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-status.md b/snippets/view-status.md index f7ee4118e..76f816c79 100644 --- a/snippets/view-status.md +++ b/snippets/view-status.md @@ -1,6 +1,7 @@ --- title: View current status -tags: branch,beginner +tags: branch +expertise: beginner firstSeen: 2021-04-06T20:58:33+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 --- diff --git a/snippets/view-undo-history.md b/snippets/view-undo-history.md index 6e529a9c8..702f5f602 100644 --- a/snippets/view-undo-history.md +++ b/snippets/view-undo-history.md @@ -1,6 +1,7 @@ --- title: View "undo" history -tags: repository,branch,advanced +tags: repository,branch +expertise: advanced firstSeen: 2021-04-06T16:35:56+03:00 lastUpdated: 2021-04-13T21:10:59+03:00 ---