Browse Source

wrapping some items in tokens

Agniva De Sarker 7 years ago
parent
commit
331c97b209
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pages/common/git-rebase.md

+ 2 - 2
pages/common/git-rebase.md

@@ -5,7 +5,7 @@
 
 - Rebase the current branch on top of the master branch:
 
-`git rebase master`
+`git rebase {{master}}`
 
 - Start an interactive rebase, which allows the commits to be reordered, omitted, combined or modified:
 
@@ -25,4 +25,4 @@
 
 - Reapply the last 5 commits in-place, stopping to allow them to be reordered, omitted, combined or modified:
 
-`git rebase -i HEAD~5`
+`git rebase -i {{HEAD~5}}`