Skip to content

Instantly share code, notes, and snippets.

View indiamos's full-sized avatar
🍰

India indiamos

🍰
View GitHub Profile
@indiamos
indiamos / debugging.md
Last active October 25, 2017 00:48 — forked from glebec/debugging.md
Debugging
# Make pretty branch names, translated from https://gist.github.com/JoshNavi/8bc9a12b7492fc093b2c8b0bb8b0473e#create_branch
function create_branch() {
local branch_name=$argv[1]
if [[ -z "$branch_name" ]]
then
echo "Need to pass a branch name to use"
return 1
fi