Skip to content

Instantly share code, notes, and snippets.

View Anmol-Baranwal's full-sized avatar
:dependabot:
Code never sleeps

Anmol Baranwal Anmol-Baranwal

:dependabot:
Code never sleeps
View GitHub Profile
@Anmol-Baranwal
Anmol-Baranwal / Bug_Report.yml
Created October 3, 2022 15:13
Basic Issue Templates in yml format
name: "🐛 Bug Report"
description: Create a new ticket for a bug.
title: "🐛 [BUG] - <title>"
labels: [
"bug"
]
body:
- type: textarea
id: description
attributes:
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 15, 2025 02:40
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@nicolasdao
nicolasdao / open_source_licenses.md
Last active April 29, 2025 00:59
What you need to know to choose an open source license.
@riipandi
riipandi / linux-cmd-cheatsheet.md
Created July 12, 2012 12:16
Linux Command Cheat Sheet

#Linux Cheat Sheet

##File Commands:

  • ls – directory listing
  • ls -al – formatted listing with hidden files
  • cd dir - change directory to dir
  • cd – change to home
  • pwd – show current directory
  • mkdir dir – create a directory dir
  • rm file – delete file