This is an old revision of the document!
Git
push to repo other than origin
git push --no-verify --mirror git@github.com:isuwebcom/Work
Branches and Merging
git checkout -b developmentor whatever your branch name is- make your changes in development branch
git add .git commit -m “developed feature x”git push origin development- when ready to merge, still on dev branch
git merge mastershould be clean, but gives you an opportunity to fix itgit checkout mastershould be clean again since we did above fixgit merge developmentgit push
Multi line commit
git commit -m "Line one" -m "line two" -m "etc"