Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Typo on git-review -T line

...

$ git commit
$ git push origin HEAD:refs/for/master

// this is the same as:
$ git commit
$ git push origin HEAD:refs/for/refs/heads/master

// or with git-review
$ git commit
$ git-review -T master
// or simply "
$ git-review -T"  // provided you used the default master branch with git-clone when cloning the repository

...