Skip to content
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

Uses github access token to clone https URLs for github repos #891

Merged
merged 1 commit into from
Nov 5, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion Source/CarthageKit/GitHub.swift
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,13 @@ public struct GitHubRepository: Equatable {

/// The URL that should be used for cloning this repository over HTTPS.
public var HTTPSURL: GitURL {
return GitURL("\(server)/\(owner)/\(name).git")
let gitAuth = parseGitHubAccessTokenFromEnvironment()

var serverAuth:String = ""
if let auth = gitAuth[server.hostname] {
serverAuth = "\(auth)@"
}
return GitURL("\(server.scheme)://\(serverAuth)\(server.hostname)/\(owner)/\(name).git")
}

/// The URL that should be used for cloning this repository over SSH.
Expand Down