Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

View alancota's full-sized avatar

Alan Cota alancota

  • Cotalabs
  • McKinney, Texas
  • 19:03 (UTC -05:00)
  • Codestin Search App in/alancota
View GitHub Profile
@alancota
alancota / conventional-commits-cheatsheet.md
Created September 5, 2024 13:31 — forked from qoomon/conventional-commits-cheatsheet.md
Conventional Commits Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@alancota
alancota / helpful-docker-commands.sh
Created September 3, 2018 03:37 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container