From 924d3c6bfef7b0f1aedae46ce8c88844233f96f5 Mon Sep 17 00:00:00 2001 From: active-low Date: Sun, 7 Dec 2014 02:39:27 -0600 Subject: [PATCH] docs(contributing): correct push -f command `git push -f` needs branch specification In all cases, please consult the git manpages before consulting angular's contributing guide when you need help with git, thx ^^ Closes #10356 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c2c7d13ce..c95c62fb3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -127,7 +127,7 @@ Before you submit your pull request consider the following guidelines: ```shell git rebase master -i - git push -f + git push origin my-fix-branch -f ``` That's it! Thank you for your contribution!