From 34e4f3e39b52fd67aec8c1611ad35436ca692300 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Sat, 14 Mar 2015 10:25:34 -0700 Subject: [PATCH] Added note about git push This reflects that your origin will be out of sync with remote if you reset. Just a small note. I noticed this when testing #33 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51c044c..5e39495 100644 --- a/README.md +++ b/README.md @@ -229,7 +229,7 @@ Create the new branch while remaining on master: (master)$ git branch new-branch ``` -Find out what the commit hash you want to set your master branch to (`git log` should do the trick). Then reset to that hash. +Find out what the commit hash you want to set your master branch to (`git log` should do the trick). Then reset to that hash. `git push` will make sure that this change is reflected on your remote. For example, if the hash of the commit that your master branch is supposed to be at is `a13b85e`: