Shell helper scripts to make working with git easier.
- Clone this repository.
- Add the cloned folder to your path
gup=> git pull --rebase orgin master (consolidates and color codes output)git_squash 2Squashes the last 'n' commits togethergit_back=> git reset HEAD~1 "Pops" the last commitgit_back n=> git reset HEAD~n "Pops" the last n commitsgit_forward=> git commit . -m "" Use this to commit current and use the same commit message as the last commit popped via "git_back"git_squash_last=>git add .; git commit . -m "." && git_squash 2git_branch_logShows a list of all branches and the time of last commit to those branches