Skip to content

Instantly share code, notes, and snippets.

@petarjs
Last active May 13, 2016 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petarjs/e29300d1928ae48a7b62 to your computer and use it in GitHub Desktop.
Save petarjs/e29300d1928ae48a7b62 to your computer and use it in GitHub Desktop.
function gffs
git flow feature start $argv
end
function gfff
git flow feature finish $argv
end
function glos
git pull origin staging
end
function glod
git pull origin develop
end
function gpod
git push origin develop
end
function gpos
git push origin staging
end
function glog
git log --oneline --all --graph --decorate $argv
end
function gc
git commit $argv
end
function ga
git add $argv
end
function gcmsg
git commit -m $argv
end
function gl
git pull $argv
end
function gp
git push $argv
end
function gst
git status
end
function gco
git checkout $argv
end
function gb
git branch $argv
end
function gbl
git branch --list
end
function grbm
git rebase master
end
function gd
git diff $argv
end
function gda
git diff .
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment