Re: [swift-users] Trouble with initial checkout

2016-12-09 Thread Ryan Parman via swift-users
I’ll give that a shot. Thank you!

--
Ryan Parman
https://github.com/skyzyx
https://keybase.io/skyzyx



> On Dec 8, 2016, at 3:08 AM, Alex Blewitt  wrote:
> 
> If you want to use the branch swift-3.0.2-PREVIEW-1 tag then you should run 
> update-checkout with that tag name, to ensure that you're on the right one.
> 
> You can run:
> 
> swift/utils/update-checkout --tag swift-3.0.2-PREVIEW-1
> 
> If you find that you have problems with repository state (that you didn't 
> apply) then you can add --reset-to-remote or --clean, which will guarantee 
> you are in a better starting point.
> 
> Alex
> 
>> On 8 Dec 2016, at 04:00, Ryan Parman via swift-users  
>> wrote:
>> 
>> I’ve been using Git for about 8 years now, so I know my way around. But in 
>> checking out a release of Swift, I’m running into errors.
>> 
>> ```
>> $ git clone -q -b swift-3.0.2-PREVIEW-1 https://github.com/apple/swift.git;
>> Note: checking out 'dc2c3d580f52367eebaada34901a945466e947df'.
>> 
>> You are in 'detached HEAD' state. You can look around, make experimental
>> changes and commit them, and you can discard any commits you make in this
>> state without impacting any branches by performing another checkout.
>> 
>> If you want to create a new branch to retain commits you create, you may
>> do so (now or later) by using -b with the checkout command again. Example:
>> 
>> git checkout -b 
>> ```
>> 
>> So far, so good. (I also did this exact same thing with swift-3.0.1-RELEASE 
>> — same issue.)
>> 
>> Now, for the util scripts:
>> 
>> ```
>> $ cd swift && \
>>   ./utils/update-checkout --clone && \
>>   ./utils/build-script -r \
>> ;
>> --- Cloning 'compiler-rt' ---
>> + git clone --recursive https://github.com/apple/swift-compiler-rt.git 
>> compiler-rt
>> Cloning into 'compiler-rt'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 67008, done.
>> remote: Compressing objects: 100% (721/721), done.
>> remote: Total 67008 (delta 461), reused 0 (delta 0), pack-reused 66286
>> Receiving objects: 100% (67008/67008), 12.01 MiB | 6.94 MiB/s, done.
>> Resolving deltas: 100% (54564/54564), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'llvm' ---
>> + git clone --recursive https://github.com/apple/swift-llvm.git llvm
>> Cloning into 'llvm'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 1288275, done.
>> remote: Compressing objects: 100% (1733/1733), done.
>> remote: Total 1288275 (delta 1048), reused 0 (delta 0), pack-reused 1286542
>> Receiving objects: 100% (1288275/1288275), 288.84 MiB | 10.42 MiB/s, done.
>> Resolving deltas: 100% (1065091/1065091), done.
>> Checking out files: 100% (22170/22170), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'swift-xcode-playground-support' ---
>> + git clone --recursive 
>> https://github.com/apple/swift-xcode-playground-support.git 
>> swift-xcode-playground-support
>> Cloning into 'swift-xcode-playground-support'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 483, done.
>> remote: Total 483 (delta 0), reused 0 (delta 0), pack-reused 482
>> Receiving objects: 100% (483/483), 139.53 KiB | 0 bytes/s, done.
>> Resolving deltas: 100% (301/301), done.
>> Already on 'master'
>> Your branch is up-to-date with 'origin/master'.
>> --- Cloning 'swift-corelibs-foundation' ---
>> + git clone --recursive 
>> https://github.com/apple/swift-corelibs-foundation.git 
>> swift-corelibs-foundation
>> Cloning into 'swift-corelibs-foundation'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 13088, done.
>> remote: Compressing objects: 100% (58/58), done.
>> remote: Total 13088 (delta 17), reused 0 (delta 0), pack-reused 13030
>> Receiving objects: 100% (13088/13088), 8.57 MiB | 6.03 MiB/s, done.
>> Resolving deltas: 100% (9875/9875), done.
>> Already on 'master'
>> Your branch is up-to-date with 'origin/master'.
>> --- Cloning 'clang' ---
>> + git clone --recursive https://github.com/apple/swift-clang.git clang
>> Cloning into 'clang'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 628505, done.
>> remote: Compressing objects: 100% (498/498), done.
>> remote: Total 628505 (delta 316), reused 15 (delta 15), pack-reused 627992
>> Receiving objects: 100% (628505/628505), 128.49 MiB | 9.96 MiB/s, done.
>> Resolving deltas: 100% (532138/532138), done.
>> Checking out files: 100% (13004/13004), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'llbuild' ---
>> + git clone --recursive https://github.com/apple/swift-llbuild.git llbuild
>> Cloning into 'llbuild'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 7253, done.

Re: [swift-users] Trouble with initial checkout

2016-12-08 Thread Alex Blewitt via swift-users
If you want to use the branch swift-3.0.2-PREVIEW-1 tag then you should run 
update-checkout with that tag name, to ensure that you're on the right one.

You can run:

swift/utils/update-checkout --tag swift-3.0.2-PREVIEW-1

If you find that you have problems with repository state (that you didn't 
apply) then you can add --reset-to-remote or --clean, which will guarantee you 
are in a better starting point.

Alex

> On 8 Dec 2016, at 04:00, Ryan Parman via swift-users  
> wrote:
> 
> I’ve been using Git for about 8 years now, so I know my way around. But in 
> checking out a release of Swift, I’m running into errors.
> 
> ```
> $ git clone -q -b swift-3.0.2-PREVIEW-1 https://github.com/apple/swift.git;
> Note: checking out 'dc2c3d580f52367eebaada34901a945466e947df'.
> 
> You are in 'detached HEAD' state. You can look around, make experimental
> changes and commit them, and you can discard any commits you make in this
> state without impacting any branches by performing another checkout.
> 
> If you want to create a new branch to retain commits you create, you may
> do so (now or later) by using -b with the checkout command again. Example:
> 
>  git checkout -b 
> ```
> 
> So far, so good. (I also did this exact same thing with swift-3.0.1-RELEASE — 
> same issue.)
> 
> Now, for the util scripts:
> 
> ```
> $ cd swift && \
>./utils/update-checkout --clone && \
>./utils/build-script -r \
> ;
> --- Cloning 'compiler-rt' ---
> + git clone --recursive https://github.com/apple/swift-compiler-rt.git 
> compiler-rt
> Cloning into 'compiler-rt'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 67008, done.
> remote: Compressing objects: 100% (721/721), done.
> remote: Total 67008 (delta 461), reused 0 (delta 0), pack-reused 66286
> Receiving objects: 100% (67008/67008), 12.01 MiB | 6.94 MiB/s, done.
> Resolving deltas: 100% (54564/54564), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'llvm' ---
> + git clone --recursive https://github.com/apple/swift-llvm.git llvm
> Cloning into 'llvm'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 1288275, done.
> remote: Compressing objects: 100% (1733/1733), done.
> remote: Total 1288275 (delta 1048), reused 0 (delta 0), pack-reused 1286542
> Receiving objects: 100% (1288275/1288275), 288.84 MiB | 10.42 MiB/s, done.
> Resolving deltas: 100% (1065091/1065091), done.
> Checking out files: 100% (22170/22170), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'swift-xcode-playground-support' ---
> + git clone --recursive 
> https://github.com/apple/swift-xcode-playground-support.git 
> swift-xcode-playground-support
> Cloning into 'swift-xcode-playground-support'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 483, done.
> remote: Total 483 (delta 0), reused 0 (delta 0), pack-reused 482
> Receiving objects: 100% (483/483), 139.53 KiB | 0 bytes/s, done.
> Resolving deltas: 100% (301/301), done.
> Already on 'master'
> Your branch is up-to-date with 'origin/master'.
> --- Cloning 'swift-corelibs-foundation' ---
> + git clone --recursive 
> https://github.com/apple/swift-corelibs-foundation.git 
> swift-corelibs-foundation
> Cloning into 'swift-corelibs-foundation'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 13088, done.
> remote: Compressing objects: 100% (58/58), done.
> remote: Total 13088 (delta 17), reused 0 (delta 0), pack-reused 13030
> Receiving objects: 100% (13088/13088), 8.57 MiB | 6.03 MiB/s, done.
> Resolving deltas: 100% (9875/9875), done.
> Already on 'master'
> Your branch is up-to-date with 'origin/master'.
> --- Cloning 'clang' ---
> + git clone --recursive https://github.com/apple/swift-clang.git clang
> Cloning into 'clang'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 628505, done.
> remote: Compressing objects: 100% (498/498), done.
> remote: Total 628505 (delta 316), reused 15 (delta 15), pack-reused 627992
> Receiving objects: 100% (628505/628505), 128.49 MiB | 9.96 MiB/s, done.
> Resolving deltas: 100% (532138/532138), done.
> Checking out files: 100% (13004/13004), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'llbuild' ---
> + git clone --recursive https://github.com/apple/swift-llbuild.git llbuild
> Cloning into 'llbuild'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 7253, done.
> remote: Compressing objects: 100% (3/3), done.
> remote: Total 7253 (delta 1), reused 0 (delta 0), pack-reused 7250
> Receiving objects: 100% (7253/7253), 6.90 MiB | 4.61 MiB/s, done.
> Resolving deltas: 100% (4769/4769), done.
> Already on 'master'
> Your branch is up-to-date with 

Re: [swift-users] Trouble with initial checkout

2016-12-07 Thread Anthony Kong via swift-users
Sorry Ryan, I think I have jumped the gun. I got the same merge conflict on
osx. So it has nothing to do with the platform

Cheers


On Thu, Dec 8, 2016 at 3:49 PM, Anthony Kong 
wrote:

> On which OS you are checking out the repo? If you are cloning it on a
> linux machine, it could be a result of file name case issue here. (os x
> filesystem is case insensitive)
>
> Cheers
>
>
>
>
> On Thu, Dec 8, 2016 at 3:00 PM, Ryan Parman via swift-users <
> swift-users@swift.org> wrote:
>
>> I’ve been using Git for about 8 years now, so I know my way around. But
>> in checking out a release of Swift, I’m running into errors.
>>
>> ```
>> $ git clone -q -b swift-3.0.2-PREVIEW-1 https://github.com/apple/swift
>> .git;
>> Note: checking out 'dc2c3d580f52367eebaada34901a945466e947df'.
>>
>> You are in 'detached HEAD' state. You can look around, make experimental
>> changes and commit them, and you can discard any commits you make in this
>> state without impacting any branches by performing another checkout.
>>
>> If you want to create a new branch to retain commits you create, you may
>> do so (now or later) by using -b with the checkout command again. Example:
>>
>>   git checkout -b 
>> ```
>>
>> So far, so good. (I also did this exact same thing with
>> swift-3.0.1-RELEASE — same issue.)
>>
>> Now, for the util scripts:
>>
>> ```
>> $ cd swift && \
>> ./utils/update-checkout --clone && \
>> ./utils/build-script -r \
>> ;
>> --- Cloning 'compiler-rt' ---
>> + git clone --recursive https://github.com/apple/swift-compiler-rt.git
>> compiler-rt
>> Cloning into 'compiler-rt'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 67008, done.
>> remote: Compressing objects: 100% (721/721), done.
>> remote: Total 67008 (delta 461), reused 0 (delta 0), pack-reused 66286
>> Receiving objects: 100% (67008/67008), 12.01 MiB | 6.94 MiB/s, done.
>> Resolving deltas: 100% (54564/54564), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'llvm' ---
>> + git clone --recursive https://github.com/apple/swift-llvm.git llvm
>> Cloning into 'llvm'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 1288275, done.
>> remote: Compressing objects: 100% (1733/1733), done.
>> remote: Total 1288275 (delta 1048), reused 0 (delta 0), pack-reused
>> 1286542
>> Receiving objects: 100% (1288275/1288275), 288.84 MiB | 10.42 MiB/s, done.
>> Resolving deltas: 100% (1065091/1065091), done.
>> Checking out files: 100% (22170/22170), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'swift-xcode-playground-support' ---
>> + git clone --recursive https://github.com/apple/swift
>> -xcode-playground-support.git swift-xcode-playground-support
>> Cloning into 'swift-xcode-playground-support'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 483, done.
>> remote: Total 483 (delta 0), reused 0 (delta 0), pack-reused 482
>> Receiving objects: 100% (483/483), 139.53 KiB | 0 bytes/s, done.
>> Resolving deltas: 100% (301/301), done.
>> Already on 'master'
>> Your branch is up-to-date with 'origin/master'.
>> --- Cloning 'swift-corelibs-foundation' ---
>> + git clone --recursive https://github.com/apple/swift
>> -corelibs-foundation.git swift-corelibs-foundation
>> Cloning into 'swift-corelibs-foundation'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 13088, done.
>> remote: Compressing objects: 100% (58/58), done.
>> remote: Total 13088 (delta 17), reused 0 (delta 0), pack-reused 13030
>> Receiving objects: 100% (13088/13088), 8.57 MiB | 6.03 MiB/s, done.
>> Resolving deltas: 100% (9875/9875), done.
>> Already on 'master'
>> Your branch is up-to-date with 'origin/master'.
>> --- Cloning 'clang' ---
>> + git clone --recursive https://github.com/apple/swift-clang.git clang
>> Cloning into 'clang'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 628505, done.
>> remote: Compressing objects: 100% (498/498), done.
>> remote: Total 628505 (delta 316), reused 15 (delta 15), pack-reused 627992
>> Receiving objects: 100% (628505/628505), 128.49 MiB | 9.96 MiB/s, done.
>> Resolving deltas: 100% (532138/532138), done.
>> Checking out files: 100% (13004/13004), done.
>> Already on 'stable'
>> Your branch is up-to-date with 'origin/stable'.
>> --- Cloning 'llbuild' ---
>> + git clone --recursive https://github.com/apple/swift-llbuild.git
>> llbuild
>> Cloning into 'llbuild'...
>> warning: templates not found /usr/local/git/share/git-core/templates
>> remote: Counting objects: 7253, done.
>> remote: Compressing objects: 100% (3/3), done.
>> remote: Total 7253 (delta 1), reused 0 (delta 0), pack-reused 7250
>> Receiving objects: 100% (7253/7253), 6.90 MiB | 4.61 MiB/s, done.
>> Resolving 

Re: [swift-users] Trouble with initial checkout

2016-12-07 Thread Anthony Kong via swift-users
On which OS you are checking out the repo? If you are cloning it on a linux
machine, it could be a result of file name case issue here. (os x
filesystem is case insensitive)

Cheers



On Thu, Dec 8, 2016 at 3:00 PM, Ryan Parman via swift-users <
swift-users@swift.org> wrote:

> I’ve been using Git for about 8 years now, so I know my way around. But in
> checking out a release of Swift, I’m running into errors.
>
> ```
> $ git clone -q -b swift-3.0.2-PREVIEW-1 https://github.com/apple/swift.git
> ;
> Note: checking out 'dc2c3d580f52367eebaada34901a945466e947df'.
>
> You are in 'detached HEAD' state. You can look around, make experimental
> changes and commit them, and you can discard any commits you make in this
> state without impacting any branches by performing another checkout.
>
> If you want to create a new branch to retain commits you create, you may
> do so (now or later) by using -b with the checkout command again. Example:
>
>   git checkout -b 
> ```
>
> So far, so good. (I also did this exact same thing with
> swift-3.0.1-RELEASE — same issue.)
>
> Now, for the util scripts:
>
> ```
> $ cd swift && \
> ./utils/update-checkout --clone && \
> ./utils/build-script -r \
> ;
> --- Cloning 'compiler-rt' ---
> + git clone --recursive https://github.com/apple/swift-compiler-rt.git
> compiler-rt
> Cloning into 'compiler-rt'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 67008, done.
> remote: Compressing objects: 100% (721/721), done.
> remote: Total 67008 (delta 461), reused 0 (delta 0), pack-reused 66286
> Receiving objects: 100% (67008/67008), 12.01 MiB | 6.94 MiB/s, done.
> Resolving deltas: 100% (54564/54564), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'llvm' ---
> + git clone --recursive https://github.com/apple/swift-llvm.git llvm
> Cloning into 'llvm'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 1288275, done.
> remote: Compressing objects: 100% (1733/1733), done.
> remote: Total 1288275 (delta 1048), reused 0 (delta 0), pack-reused 1286542
> Receiving objects: 100% (1288275/1288275), 288.84 MiB | 10.42 MiB/s, done.
> Resolving deltas: 100% (1065091/1065091), done.
> Checking out files: 100% (22170/22170), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'swift-xcode-playground-support' ---
> + git clone --recursive https://github.com/apple/swift-xcode-playground-
> support.git swift-xcode-playground-support
> Cloning into 'swift-xcode-playground-support'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 483, done.
> remote: Total 483 (delta 0), reused 0 (delta 0), pack-reused 482
> Receiving objects: 100% (483/483), 139.53 KiB | 0 bytes/s, done.
> Resolving deltas: 100% (301/301), done.
> Already on 'master'
> Your branch is up-to-date with 'origin/master'.
> --- Cloning 'swift-corelibs-foundation' ---
> + git clone --recursive https://github.com/apple/
> swift-corelibs-foundation.git swift-corelibs-foundation
> Cloning into 'swift-corelibs-foundation'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 13088, done.
> remote: Compressing objects: 100% (58/58), done.
> remote: Total 13088 (delta 17), reused 0 (delta 0), pack-reused 13030
> Receiving objects: 100% (13088/13088), 8.57 MiB | 6.03 MiB/s, done.
> Resolving deltas: 100% (9875/9875), done.
> Already on 'master'
> Your branch is up-to-date with 'origin/master'.
> --- Cloning 'clang' ---
> + git clone --recursive https://github.com/apple/swift-clang.git clang
> Cloning into 'clang'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 628505, done.
> remote: Compressing objects: 100% (498/498), done.
> remote: Total 628505 (delta 316), reused 15 (delta 15), pack-reused 627992
> Receiving objects: 100% (628505/628505), 128.49 MiB | 9.96 MiB/s, done.
> Resolving deltas: 100% (532138/532138), done.
> Checking out files: 100% (13004/13004), done.
> Already on 'stable'
> Your branch is up-to-date with 'origin/stable'.
> --- Cloning 'llbuild' ---
> + git clone --recursive https://github.com/apple/swift-llbuild.git llbuild
> Cloning into 'llbuild'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 7253, done.
> remote: Compressing objects: 100% (3/3), done.
> remote: Total 7253 (delta 1), reused 0 (delta 0), pack-reused 7250
> Receiving objects: 100% (7253/7253), 6.90 MiB | 4.61 MiB/s, done.
> Resolving deltas: 100% (4769/4769), done.
> Already on 'master'
> Your branch is up-to-date with 'origin/master'.
> --- Cloning 'cmark' ---
> + git clone --recursive https://github.com/apple/swift-cmark.git cmark
> Cloning into 'cmark'...
> warning: templates not found /usr/local/git/share/git-core/templates
> remote: Counting objects: 8390, done.
> 

[swift-users] Trouble with initial checkout

2016-12-07 Thread Ryan Parman via swift-users
I’ve been using Git for about 8 years now, so I know my way around. But in 
checking out a release of Swift, I’m running into errors.

```
$ git clone -q -b swift-3.0.2-PREVIEW-1 https://github.com/apple/swift.git;
Note: checking out 'dc2c3d580f52367eebaada34901a945466e947df'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b 
```

So far, so good. (I also did this exact same thing with swift-3.0.1-RELEASE — 
same issue.)

Now, for the util scripts:

```
$ cd swift && \
./utils/update-checkout --clone && \
./utils/build-script -r \
;
--- Cloning 'compiler-rt' ---
+ git clone --recursive https://github.com/apple/swift-compiler-rt.git 
compiler-rt
Cloning into 'compiler-rt'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 67008, done.
remote: Compressing objects: 100% (721/721), done.
remote: Total 67008 (delta 461), reused 0 (delta 0), pack-reused 66286
Receiving objects: 100% (67008/67008), 12.01 MiB | 6.94 MiB/s, done.
Resolving deltas: 100% (54564/54564), done.
Already on 'stable'
Your branch is up-to-date with 'origin/stable'.
--- Cloning 'llvm' ---
+ git clone --recursive https://github.com/apple/swift-llvm.git llvm
Cloning into 'llvm'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 1288275, done.
remote: Compressing objects: 100% (1733/1733), done.
remote: Total 1288275 (delta 1048), reused 0 (delta 0), pack-reused 1286542
Receiving objects: 100% (1288275/1288275), 288.84 MiB | 10.42 MiB/s, done.
Resolving deltas: 100% (1065091/1065091), done.
Checking out files: 100% (22170/22170), done.
Already on 'stable'
Your branch is up-to-date with 'origin/stable'.
--- Cloning 'swift-xcode-playground-support' ---
+ git clone --recursive 
https://github.com/apple/swift-xcode-playground-support.git 
swift-xcode-playground-support
Cloning into 'swift-xcode-playground-support'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 483, done.
remote: Total 483 (delta 0), reused 0 (delta 0), pack-reused 482
Receiving objects: 100% (483/483), 139.53 KiB | 0 bytes/s, done.
Resolving deltas: 100% (301/301), done.
Already on 'master'
Your branch is up-to-date with 'origin/master'.
--- Cloning 'swift-corelibs-foundation' ---
+ git clone --recursive https://github.com/apple/swift-corelibs-foundation.git 
swift-corelibs-foundation
Cloning into 'swift-corelibs-foundation'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 13088, done.
remote: Compressing objects: 100% (58/58), done.
remote: Total 13088 (delta 17), reused 0 (delta 0), pack-reused 13030
Receiving objects: 100% (13088/13088), 8.57 MiB | 6.03 MiB/s, done.
Resolving deltas: 100% (9875/9875), done.
Already on 'master'
Your branch is up-to-date with 'origin/master'.
--- Cloning 'clang' ---
+ git clone --recursive https://github.com/apple/swift-clang.git clang
Cloning into 'clang'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 628505, done.
remote: Compressing objects: 100% (498/498), done.
remote: Total 628505 (delta 316), reused 15 (delta 15), pack-reused 627992
Receiving objects: 100% (628505/628505), 128.49 MiB | 9.96 MiB/s, done.
Resolving deltas: 100% (532138/532138), done.
Checking out files: 100% (13004/13004), done.
Already on 'stable'
Your branch is up-to-date with 'origin/stable'.
--- Cloning 'llbuild' ---
+ git clone --recursive https://github.com/apple/swift-llbuild.git llbuild
Cloning into 'llbuild'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 7253, done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 7253 (delta 1), reused 0 (delta 0), pack-reused 7250
Receiving objects: 100% (7253/7253), 6.90 MiB | 4.61 MiB/s, done.
Resolving deltas: 100% (4769/4769), done.
Already on 'master'
Your branch is up-to-date with 'origin/master'.
--- Cloning 'cmark' ---
+ git clone --recursive https://github.com/apple/swift-cmark.git cmark
Cloning into 'cmark'...
warning: templates not found /usr/local/git/share/git-core/templates
remote: Counting objects: 8390, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 8390 (delta 1), reused 0 (delta 0), pack-reused 8388
Receiving objects: 100% (8390/8390), 2.75 MiB | 1.34 MiB/s, done.
Resolving deltas: 100% (5825/5825), done.
Already on 'master'
Your branch is up-to-date with 'origin/master'.
--- Cloning 'lldb' ---
+ git clone --recursive https://github.com/apple/swift-lldb.git lldb
Cloning into 'lldb'...
warning: templates not found /usr/local/git/share/git-core/templates