-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Simplify obtaining of swift sources #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
gribozavr
merged 13 commits into
swiftlang:master
from
BrandonMathis:feature/easier-install
Dec 11, 2015
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
176d903
Simplify obtaining of swift sources
BrandonMathis 77ec422
Correct interpriter
BrandonMathis 665b08b
Favor https over ssh for cloning from github
BrandonMathis 74a1d05
Move additional repo cloning into the update-checkout py script
BrandonMathis e84acea
Update readme
BrandonMathis 2a1364d
Specificity
BrandonMathis 2942c32
Make changes per @gribozavr suggestions
BrandonMathis 26508ca
Merge branch 'master' into feature/easier-install
BrandonMathis 9311f72
Merge branch 'master' into feature/easier-install
BrandonMathis b0c4fbd
Added option install with ssh param
BrandonMathis f9bc59b
Uncomment update_working_copy code
BrandonMathis 1b5ec13
Remove extraneous newline
BrandonMathis dd68e72
Merge branch 'master' into feature/easier-install
BrandonMathis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -66,15 +66,7 @@ compiler for C++14 support and create a symlink: | |
|
|
||
| ### Getting Sources for Swift and Related Projects | ||
|
|
||
| git clone [email protected]:apple/swift.git swift | ||
| git clone [email protected]:apple/swift-llvm.git llvm | ||
| git clone [email protected]:apple/swift-clang.git clang | ||
| git clone [email protected]:apple/swift-lldb.git lldb | ||
| git clone [email protected]:apple/swift-cmark.git cmark | ||
| git clone [email protected]:apple/swift-llbuild.git llbuild | ||
| git clone [email protected]:apple/swift-package-manager.git swiftpm | ||
| git clone [email protected]:apple/swift-corelibs-xctest.git | ||
| git clone [email protected]:apple/swift-corelibs-foundation.git | ||
| curl -sSL https://raw.githubusercontent.com/apple/swift/master/utils/clone_resources.sh | bash | ||
|
|
||
|
|
||
| [CMake](http://cmake.org) is the core infrastructure used to configure builds of | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #!/usr/env bash | ||
|
|
||
| git clone [email protected]:apple/swift.git swift | ||
| git clone [email protected]:apple/swift-llvm.git llvm | ||
| git clone [email protected]:apple/swift-clang.git clang | ||
| git clone [email protected]:apple/swift-lldb.git lldb | ||
| git clone [email protected]:apple/swift-cmark.git cmark | ||
| git clone [email protected]:apple/swift-llbuild.git llbuild | ||
| git clone [email protected]:apple/swift-package-manager.git swiftpm | ||
| git clone [email protected]:apple/swift-corelibs-xctest.git | ||
| git clone [email protected]:apple/swift-corelibs-foundation.git | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the Swift team goes ahead with this approach, please can #29 be changed here too.