Skip to content

Zohamo/git-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 

Repository files navigation

Git Helpers

Helpers and conventions for Git workflow.

πŸ“‘ Commands

Some useful commands

  • git config credential.helper store This command stores credentials indefinitely on disk for use by future Git programs. Git Credential Store

  • git branch | grep -v "develop" | xargs git branch -D Remove all your local git branches except develop.

You can easily set up an alias for each command using git config. Git Aliases

  • git last : git config --global alias.last 'log -1 HEAD' See the last commit easily.

πŸ“Œ Commits

Prefixes with emojis for commits :

  • πŸ’₯ :boom: First Commit or MAJOR UPDATE
  • πŸ› :bug: BUGFIX
  • 🚽 :toilet: CLEANUP
  • πŸ”§ :wrench: CONFIG
  • πŸ“— :green_book: DOC
  • 🌟 :star2: FEATURE
  • πŸ’¬ :speech_balloon: LANGUAGE/TRANSLATION
  • 🚚 :truck: MOVE folders, files
  • ⚑ :zap PERFORMANCE
  • πŸ”Œ :electric_plug: PLUG Front/Back
  • ✨ :sparkles: REFACTOR
  • πŸ”’ :lock: SECURITY
  • 🎨 :art: STYLE
  • πŸ”– :bookmark: TAG
  • πŸ„ :mushroom: UPGRADE
  • 🚧 :construction: WIP

Ressources :

Articles :

About

Helpers for Git workflow and conventions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published