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 2
Squashes 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 2
git_branch_log
Shows a list of all branches and the time of last commit to those branches