Skip to content

Instantly share code, notes, and snippets.

@revans
Created September 9, 2019 15:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#!/bin/bash
#
# Needs to be saved into your ~/bin directory
#
# Example: git dev my-feature-name
#
# set -e
git checkout -b dev/$1
#!/bin/bash
#
# Needs to be saved into your ~/bin directory
#
# Example: git feature my-feature-name
#
# set -e
git checkout -b feature/$1
#!/bin/bash
#
# Needs to be saved into your ~/bin directory
#
# Example: git hotfix my-hotfix-name
#
# set -e
git checkout -b hotfix/$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment