Skip to content

Instantly share code, notes, and snippets.

@wetherc
Last active October 19, 2016 15:50
Show Gist options
  • Save wetherc/6a0fde7ef3f2f3eb6a18a7cc1e067fd7 to your computer and use it in GitHub Desktop.
Save wetherc/6a0fde7ef3f2f3eb6a18a7cc1e067fd7 to your computer and use it in GitHub Desktop.
Code Review Cheat Sheet

Save Changes in Git

$ git add --all
$ git commit -a -m "My commit message"

Create A Code Review

$ arc diff --amend-all

Update A Code Review

$ git add --all
$ git commit --amend --no-edit
$ arc diff --message "My update message"

Land Changes

$ arc land
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment