Login is currently incompatible with git bash/cygwin

后端 未结 7 2939
广开言路
广开言路 2021-02-12 13:37

I just download this version Git-2.6.1-64-bit.exe my OS is windows 10 64bit.. why I cannot still log in it? is Git-2.6.1-64-bit.exe the latest one?

before it was MINWG3

相关标签:
7条回答
  • 2021-02-12 14:22

    login from windows cmd. I have been successful to login from cmd.

    0 讨论(0)
  • 2021-02-12 14:27

    Instead of typing heroku login , i had to type winpty heroku login . And that solved my problem.

    i.e

    winpty heroku login
    
    0 讨论(0)
  • 2021-02-12 14:27

    Try:

    $ winpty heroku login
    

    Source:

    https://github.com/heroku/cli/issues/84

    0 讨论(0)
  • 2021-02-12 14:32

    Simple fix. Install Heroku on Windows machine as per the site instructions. Then, with Git Bash closed, open the Windows "Command Prompt" and type "heroku login". You will be prompted for your Heroku username and password and you're in! Close the command prompt and use bash as per normal.

    0 讨论(0)
  • 2021-02-12 14:35

    login through the windows command prompt first, then you will be able to run heroku commands on git Bash.

    0 讨论(0)
  • 2021-02-12 14:38

    First, the latest releases are listed at https://github.com/git-for-windows/git/releases

    Download PortableGit-2.7.0-64-bit.7z.exe, uncompress it to c:\git2.7.0, and add to your path:

    set PATH=%PATH%;c:\git2.7.0\bin;c:\git2.7.0;c:\git2.7.0\usr\bin
    

    Then launch git-cmd or git-bash.

    0 讨论(0)
提交回复
热议问题