Skip to content

Instantly share code, notes, and snippets.

View Kelley-Stephens's full-sized avatar
💅

Kelley Stephens Kelley-Stephens

💅
View GitHub Profile
@Kelley-Stephens
Kelley-Stephens / .gitconfig
Created December 12, 2017 15:09
.gitconfig
[user]
name = Kelley-Stephens
email = [email protected]
[core]
excludesfile = ~/.gitignore
[alias]
co = checkout
br = branch
st = status
cob = "!f() { ticketnum=$1; branchName=$2; git checkout -b \"B2CH-${ticketnum}/${branchName}\"; }; f"
@Kelley-Stephens
Kelley-Stephens / .git-prompt.sh
Created December 12, 2017 14:35
.git-prompt.sh
# bash/zsh git prompt support
#
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]>
# Distributed under the GNU General Public License, version 2.0.
#
# This script allows you to see repository status in your prompt.
#
# To enable:
#
# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh).
@Kelley-Stephens
Kelley-Stephens / .git-completion.bash
Created December 12, 2017 14:35
.git-completion.bash
# bash/zsh completion support for core Git.
#
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]>
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
# Distributed under the GNU General Public License, version 2.0.
#
# The contained completion routines provide support for completing:
#
# *) local and remote branch names
# *) local and remote tag names
@Kelley-Stephens
Kelley-Stephens / .bash_profile
Last active December 12, 2017 14:41
.bash_profile
# Color Variables
txtblk='\[\e[0;30m\]' # Black
txtred='\[\e[0;31m\]' # Red
txtgrn='\[\e[0;32m\]' # Green
txtylw='\[\e[0;33m\]' # Yellow
txtblu='\[\e[0;34m\]' # Blue
txtpur='\[\e[0;35m\]' # Purple
txtcyn='\[\e[0;36m\]' # Cyan
txtwht='\[\e[0;37m\]' # White
txtrst='\[\e[0m\]' # Text Reset