Skip to content

Commit 22dc103

Browse files
authored
Move PR migration instructions in README to the bottom (#1421)
2 parents 1539390 + 81ff483 commit 22dc103

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,6 @@ This package is part of the Julia standard library (stdlib).
1111
[codecov-img]: https://codecov.io/gh/JuliaLang/LinearAlgebra.jl/branch/master/graph/badge.svg
1212
[codecov-url]: https://codecov.io/gh/JuliaLang/LinearAlgebra.jl
1313

14-
## Migrating a Pull Request (PR) from the Julia repository to this repository
15-
16-
Since this package was split out from the main Julia repository, you might have previously made a pull request (PR) to the Julia repo. You can easily migrate such PRs to this repository using the following steps:
17-
18-
1. Add the Julia repository (or your fork) as a new remote repository:
19-
```bash
20-
git remote add juliarepo https://github.com/JuliaLang/julia
21-
```
22-
23-
2. Fetch the commits from the Julia repository:
24-
```bash
25-
git fetch juliarepo
26-
```
27-
28-
3. Cherry-pick the relevant commits made in the Julia repository to this repository:
29-
```bash
30-
git cherry-pick $JULIA_COMMIT
31-
```
32-
3314
## Using development versions of this package
3415

3516
This package performs some type piracy and is also included in the sysimage, which makes using a development version slightly more complex than usual.
@@ -77,5 +58,24 @@ To use a development version of this package, you can choose one of the followin
7758
```
7859
- Start Julia with the custom sysimage:
7960
```bash
61+
62+
## Migrating a Pull Request (PR) from the Julia repository to this repository
63+
64+
Since this package was split out from the main Julia repository, you might have previously made a pull request (PR) to the Julia repo. You can easily migrate such PRs to this repository using the following steps:
65+
66+
1. Add the Julia repository (or your fork) as a new remote repository:
67+
```bash
68+
git remote add juliarepo https://github.com/JuliaLang/julia
69+
```
70+
71+
2. Fetch the commits from the Julia repository:
72+
```bash
73+
git fetch juliarepo
74+
```
75+
76+
3. Cherry-pick the relevant commits made in the Julia repository to this repository:
77+
```bash
78+
git cherry-pick $JULIA_COMMIT
79+
```
8080
julia -Jnew_sysimage.so
8181
```

0 commit comments

Comments
 (0)