Versions Compared

Key

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

...

Code Block
languagebash
$ git token store https://github.com
Username: <insert your Github username>
Password: <insert your "Personal Access Token", not your GitHub password>

Using

The following sections contains examples on how to use the Skara CLI tools. For more detailed information on how to use a certain tool, pass the -h flag to it, for example git pr -h.

Creating a personal fork

To create a personal fork of an upstream repository, run the command git fork <URL>. For example, to create a personal fork of the jdk repository, run:

...

  • If you want to run jcheck on your changes before the pull request is created, pass the flag --jcheck to git pr createjcheck
  • If you want the local branch to be published automatically, pass the flag --publish to git pr create

Listing pull requests

To list the open pull requests for a repository, run the command git pr list in a local clone of your personal fork:

Code Block
languagebash
$ git pr list

Notes:

  • You can filter the listed pull requests by passing additional flags such --assignees=<USERNAMES>, --authors=<USERNAMES>, --labels=<LABELS>
  • You can select the columns to show by passing the --columns flag, for example --columns=id,title