-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,15 @@ origin [email protected]:EESSI/test-suite.git (fetch) | |
origin [email protected]:EESSI/test-suite.git (push) | ||
``` | ||
|
||
#### Option 1: Creating a branch from the PR directly | ||
|
||
```bash | ||
git fetch origin pull/ID/head:BRANCH_NAME | ||
``` | ||
where `ID` is the number of the pull request, and `BRANCH_NAME` is the name of the local branch (you can pick this yourself). | ||
|
||
#### Option 2: Creating a branch tracking the feature branch | ||
|
||
You can add a fork to your local clone by adding a new remote. Pick a name for | ||
the remote that you find easy to recognize. E.g. to add the fork | ||
https://github.com/casparvl/test-suite and give it the (local) name `casparvl`, | ||
|