git-process
git-process copied to clipboard
Scripts to help work with a good Git process
Updating to-master command to prompt user to squash commits before continuing with to-master. Hopefully this will reduce the number of cases where users forget to squash. Note: Default editor used...
In spec_helper: ``` require 'GitRepoHelper' RSpec.configure do |config| config.include GitRepoHelper end ```
When you have files which have been added, but not committed, and you perform a git sync and choose "c" for "commit", the process halts at "Committing your files." Have...
An example of where this is happening : 
Right now if you do something like ``` $ git sync $ git rebase -i # squash commits $ git to-master ``` When it does the to-master it will close...
It would be very useful to provide a way to hook into the `to-master` lifecycle, before attempting to push to a central repository. Examples, depending on your workflow: - Verify...