Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hashicorp/go-getter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.7.1
Choose a base ref
...
head repository: hashicorp/go-getter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.2
Choose a head ref
  • 4 commits
  • 2 files changed
  • 4 contributors

Commits on Jan 6, 2021

  1. Fixes #299

    Does not override GIT_SSH_COMMAND when not needed.
    nl-brett-stime authored Jan 6, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    5d03c41 View commit details

Commits on Mar 17, 2023

  1. Copy the full SHA
    91e9337 View commit details

Commits on Apr 10, 2023

  1. Copy the full SHA
    8480407 View commit details

Commits on Apr 11, 2023

  1. Merge pull request #429 from hashicorp/remove_codeql_workflow

    remove repo-specific codeql action, in favor of centralized job
    picatz authored Apr 11, 2023
    Copy the full SHA
    c12e42f View commit details
Showing with 1 addition and 51 deletions.
  1. +0 −50 .github/workflows/codeql-analysis.yml
  2. +1 −1 get_git.go
50 changes: 0 additions & 50 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion get_git.go
Original file line number Diff line number Diff line change
@@ -329,9 +329,9 @@ func setupGitEnv(cmd *exec.Cmd, sshKeyFile string) {
sshKeyFile = strings.Replace(sshKeyFile, `\`, `/`, -1)
}
sshCmd = append(sshCmd, "-i", sshKeyFile)
env = append(env, strings.Join(sshCmd, " "))
}

env = append(env, strings.Join(sshCmd, " "))
cmd.Env = env
}