Git rollback

# git revert changes to specific commit

# cherry pick specific commit
git revert 06a60ce..master

git revert 43d2f1b..master --no-commit

git commit -m "revert back to 43d2f1b 5 aug"

git cherry-pick --no-commit e7beaf3

# check changes in sourcetree or something else, revert unwanted

git commit -m "RUA-16410 swap AppFabric to Redis initial"
git push

# TODO: deploy

git revert #######..master --no-commit   # reverting changes back to master

git commit -m "revert back-forward"
git push

git pull --rebase origin master

git diff --staged -w Web.config

git reset HEAD Web.config # unstage

git checkout -- Web.config # revert changes