Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • If you find yourself typing git pr integrate a lot, you might want to create the alias "integrate":

    Code Block
    languagebash
    $ git config --global alias.integrate 'pr integrate'

    You can then just run git integrate to integrate a pull request.

Syncing a personal fork

To sync your personal fork with the upstream repository it was created from, run the command git sync:

Code Block
languagebash
$ git sync

Notes:

  • To sync your personal fork and your local repository, pass the flag --fast-forward
  • To sync only a subset of branches, pass the flag --branches=<BRANCHES>