Skip to content

Commit f7bafb3

Browse files
authored
Update Repository name in GettingStarted.md
The name of the swift repository has changed from apple/swift to swiftlang/swift
1 parent bbc02a5 commit f7bafb3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/HowToGuides/GettingStarted.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ toolchain as a one-off, there are a couple of differences:
8282
If you plan on contributing regularly, cloning over SSH provides a better
8383
experience. After you've [uploaded your SSH keys to GitHub][]:
8484
```sh
85-
git clone git@github.com:apple/swift.git swift
85+
git clone git@github.com:swiftlang/swift.git swift
8686
cd swift
8787
utils/update-checkout --clone-with-ssh
8888
```
@@ -91,15 +91,15 @@ toolchain as a one-off, there are a couple of differences:
9191
or are not familiar with setting up SSH,
9292
you can use HTTPS instead:
9393
```sh
94-
git clone https://github.com/apple/swift.git swift
94+
git clone https://github.com/swiftlang/swift.git swift
9595
cd swift
9696
utils/update-checkout --clone
9797
```
9898
> **Note**
9999
> If you've already forked the project on GitHub at this stage, **do not
100100
> clone your fork** to start off. We describe [how to setup your fork](#setting-up-your-fork)
101101
> in a subsection below.
102-
<!-- Recommending against cloning the fork due to https://github.com/apple/swift/issues/55918 and https://github.com/apple/swift/issues/55947. -->
102+
<!-- Recommending against cloning the fork due to https://github.com/swiftlang/swift/issues/55918 and https://github.com/swiftlang/swift/issues/55947. -->
103103
3. Double-check that `swift`'s sibling directories are present.
104104
```sh
105105
ls ..
@@ -165,11 +165,11 @@ toolchain as a one-off, there are a couple of differences:
165165
### Linux
166166
167167
1. The latest Linux dependencies are listed in the respective Dockerfiles:
168-
* [Ubuntu 18.04](https://github.com/apple/swift-docker/blob/main/swift-ci/master/ubuntu/18.04/Dockerfile)
169-
* [Ubuntu 20.04](https://github.com/apple/swift-docker/blob/main/swift-ci/master/ubuntu/20.04/Dockerfile)
170-
* [Ubuntu 22.04](https://github.com/apple/swift-docker/blob/main/swift-ci/master/ubuntu/22.04/Dockerfile)
171-
* [CentOS 7](https://github.com/apple/swift-docker/blob/main/swift-ci/master/centos/7/Dockerfile)
172-
* [Amazon Linux 2](https://github.com/apple/swift-docker/blob/main/swift-ci/master/amazon-linux/2/Dockerfile)
168+
* [Ubuntu 18.04](https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/ubuntu/18.04/Dockerfile)
169+
* [Ubuntu 20.04](https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/ubuntu/20.04/Dockerfile)
170+
* [Ubuntu 22.04](https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/ubuntu/22.04/Dockerfile)
171+
* [CentOS 7](https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/centos/7/Dockerfile)
172+
* [Amazon Linux 2](https://github.com/swiftlang/swift-docker/blob/main/swift-ci/master/amazon-linux/2/Dockerfile)
173173
174174
Note that [a prebuilt Swift release toolchain](https://www.swift.org/download/)
175175
is installed and added to the `PATH` in all these Docker containers: it is
@@ -301,7 +301,7 @@ You will need to slightly tweak the paths for other build configurations.
301301
[meet the minimum required versions](#spot-check-dependencies).
302302
- Check if there are spaces in the paths being used by `build-script` in
303303
the log. While `build-script` should work with paths containing spaces,
304-
sometimes bugs do slip through, such as [#55883](https://github.com/apple/swift/issues/55883).
304+
sometimes bugs do slip through, such as [#55883](https://github.com/swiftlang/swift/issues/55883).
305305
If this is the case, please [file a bug report][Swift Issues] and change the path
306306
to work around it.
307307
- Check that your `build-script` invocation doesn't have typos. You can compare
@@ -326,7 +326,7 @@ You will need to slightly tweak the paths for other build configurations.
326326
build log in the post.
327327
- Include the output of `utils/update-checkout --dump-hashes`.
328328

329-
[Swift Issues]: https://github.com/apple/swift/issues
329+
[Swift Issues]: https://github.com/swiftlang/swift/issues
330330
[Swift Forums]: https://forums.swift.org
331331

332332
## Editing code
@@ -336,7 +336,7 @@ You will need to slightly tweak the paths for other build configurations.
336336
If you are building the toolchain for development and submitting patches,
337337
you will need to setup a GitHub fork.
338338

339-
First fork the `apple/swift` [repository](https://github.com/apple/swift.git),
339+
First fork the `swiftlang/swift` [repository](https://github.com/swiftlang/swift.git),
340340
using the "Fork" button in the web UI, near the top-right. This will create a
341341
repository `username/swift` for your GitHub username. Next, add it as a remote:
342342
```sh
@@ -507,7 +507,7 @@ This should print your updated version string.
507507
508508
## Reproducing an issue
509509
510-
[Good first issues](https://github.com/apple/swift/contribute) typically have
510+
[Good first issues](https://github.com/swiftlang/swift/contribute) typically have
511511
small code examples that fit within a single file. You can reproduce such an
512512
issue in various ways, such as compiling it from the command line using
513513
`/path/to/swiftc MyFile.swift`, pasting the code into [Compiler Explorer](https://godbolt.org)

0 commit comments

Comments
 (0)