私はCygwinとTortoiseGitをインストールしました。そして私はssh-key-gen -t rsa
によってssh-keyを作成し、私のGitHubページに公開鍵を登録しました。 gitbash
端末で動作した場合、Cygwin
端末に障害が発生しました。Cygwin端末でgitパスを指定する方法は?
// Cygwin
$ git pull
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
私は彼らが異なるgitを使用していることに気付きました。 Cygwinでgitパスを指定するには?私のOSはWindows 10です。
// Cygwin
$ where git
C:\Program Files\Git\cmd\git.exe
$ which git
/cygdrive/c/Program Files/Git/cmd/git
// gitbash (MINGW64)
$ where git
C:\Program Files\Git\mingw64\bin\git.exe
C:\Program Files\Git\cmd\git.exe
$ which git
/mingw64/bin/git
cygwinはgitを使っています。 cygwin ssh-key-gen – matzeri