- Loading...
...
The command git fork will also clone your personal fork to a local repository on your computer.
...
To publish a local branch to a remote repository, run the following command:
...
--jcheck
--publishTo list the open pull requests for a repository, run the command git pr list in a local clone of your personal fork:
...
--assignees=<USERNAMES>, --authors=<USERNAMES>, --labels=<LABELS>--columns flag, for example --columns=id,titleTo set properties of a pull request, run the command git pr set:
| Code Block | ||
|---|---|---|
| ||
$ git pr set |
Examples:
git pr set --title <TITLE>git pr set --body <BODY>git pr set --closed To integrate a pull request that you have created, run the command git pr integrate:
| Code Block | ||
|---|---|---|
| ||
$ git pr integrate |
Notes:
If you find yourself typing git pr integrate a lot, you might want to create the alias "integrate":
| Code Block | ||
|---|---|---|
| ||
$ git config --global alias.integrate 'pr integrate' |
You can then just run git integrate to integrate a pull request.