Make expertise a field

This commit is contained in:
Isabelle Viktoria Maciohsek
2022-03-01 20:23:46 +02:00
parent ac081f148f
commit ee28929328
86 changed files with 172 additions and 86 deletions

View File

@ -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.

View File

@ -1,6 +1,7 @@
---
title: Snippet name
tags: branch,intermediate
tags: branch
expertise: intermediate
firstSeen: 2021-06-13T05:00:00-04:00
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---