Skip to content

Instantly share code, notes, and snippets.

View patrickjohnstevens's full-sized avatar

Patrick John Stevens patrickjohnstevens

View GitHub Profile
@patrickjohnstevens
patrickjohnstevens / conventional-commits.md
Created December 15, 2021 19:41 — forked from Zekfad/conventional-commits.md
Conventional Commits Cheatsheet

Quick examples

  • feat: new feature
  • fix(scope): bug in scope
  • feat!: breaking change in API
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Changes wich doesn't change source code or tests e.g. chnages to the build process, auxiliary tools, libraries
@patrickjohnstevens
patrickjohnstevens / README.md
Created April 11, 2022 15:51 — forked from hofmannsven/README.md
Git Cheatsheet
We couldn’t find that file to show.
@patrickjohnstevens
patrickjohnstevens / remove-git.md
Last active November 5, 2022 14:59
How Completely Uninitialize (Remove) Git from your Project

How Completely Uninitialize (Remove) Git from your Project

https://techstacker.com/how-to-remove-git-from-project/

Git When you initialize a git repository with git init, you create a hidden git directory (.git) inside your project directory.

To uninitialize (remove) git from your project directory, run this command in your Terminal/Command Line while inside your project directory:

/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
These remedies are recommended
as a starter for any project.
category: file
*/
@patrickjohnstevens
patrickjohnstevens / docTemplate.mdx
Last active December 7, 2022 17:42
MDX Templates