Skip to content

Instantly share code, notes, and snippets.

@minhtran83
Forked from tony612/arcanist_cheatsheet.md
Created August 26, 2020 14:36
Show Gist options
  • Save minhtran83/ccddfcd198b21d899cfe803b7ce46ba0 to your computer and use it in GitHub Desktop.
Save minhtran83/ccddfcd198b21d899cfe803b7ce46ba0 to your computer and use it in GitHub Desktop.
arcanist cheatsheet
  • create tasks T{NNNN} asign them
  • create a branch with name like "T{NNNN}-boo-hoo" ** git co -b T1234-boo-foo
  • commit changes on that branch until it gets ready to be reviewed
  • check lint ** arc lint
  • push a review request to the server ** arc diff
  • if reviewers post a comment and you need to update the changeset, commit more changes on that branch
  • and push updated changeset to the server ** arc diff --update 1234
  • Once review request got accepted, merge changes to master. "arc land" command will take care of merging/rebasing branch and deleting your working branch ** arc land
  • viola!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment