-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(git): fixed unable to checkout remote branch issue crawlab-team/c…
- Loading branch information
Showing
4 changed files
with
104 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
package test | ||
|
||
type Credential struct { | ||
Username string `json:"username"` | ||
Password string `json:"password"` | ||
TestRepoHttpUrl string `json:"test_repo_http_url"` | ||
SshUsername string `json:"ssh_username"` | ||
SshPassword string `json:"ssh_password"` | ||
TestRepoSshUrl string `json:"test_repo_ssh_url"` | ||
PrivateKey string `json:"private_key"` | ||
PrivateKeyPath string `json:"private_key_path"` | ||
Username string `json:"username"` | ||
Password string `json:"password"` | ||
TestRepoHttpUrl string `json:"test_repo_http_url"` | ||
TestRepoMultiBranchUrl string `json:"test_repo_multi_branch_url"` | ||
SshUsername string `json:"ssh_username"` | ||
SshPassword string `json:"ssh_password"` | ||
TestRepoSshUrl string `json:"test_repo_ssh_url"` | ||
PrivateKey string `json:"private_key"` | ||
PrivateKeyPath string `json:"private_key_path"` | ||
} |
This file contains 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