Git RESET

Git stable has changes that have been committed and not pushed. Stable doesn’t allow changes to be pushed. Rollback the branch to match the repo. Locate the specific commit # …

Diffs

Get a listing of files different between two branches git diff –name-status master..master-stable >> diffs.txt

Most Useful Git Commands

Useful Log git log –pretty=format:”[%an]|%h|%ad|%s|%d” –date=short Set your details git config –global user.name “John Doe” git config –global user.email “[email protected]” Use –global to set the configuration for all projects. If …