Thursday, January 25, 2018

Basic git command to create a new branch revert changes in a branch

`git checkout staging`
`git pull`
`git checkout -b ES-205 #create a new branch`
`git push --set-upstream origin ES-205 #push the new branch`
`git checkout staging`
`git revert _____ # revert the commits you made on staging`