Skip to content

Instantly share code, notes, and snippets.

View isaacweathers's full-sized avatar

isaac weathers isaacweathers

  • isaacweathersnet
  • Texas
  • 09:21 (UTC -06:00)
View GitHub Profile
@isaacweathers
isaacweathers / release.sh
Created August 2, 2018 20:33 — forked from bclinkinbeard/release.sh
Bash script to automate the Git Flow tag/release process
#!/bin/bash
# current Git branch
branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
# v1.0.0, v1.5.2, etc.
versionLabel=v$1
# establish branch and tag name variables
devBranch=develop
@isaacweathers
isaacweathers / .bash_profile_windows
Last active August 29, 2015 14:26 — forked from davemo/.gitconfig
bash_profile, sublime settings, alfred snippets
# snag theme: http://noahfrederick.com/blog/2011/lion-terminal-theme-peppermint/
# A two-line colored Bash prompt (PS1) with Git branch and a line decoration
# which adjusts automatically to the width of the terminal.
# Screenshot: http://img194.imageshack.us/img194/2154/twolineprompt.png
# Michal Kottman, 2012
RESET="\[\033[0m\]"
RED="\[\033[0;31m\]"
GREEN="\[\033[01;32m\]"