user2302448
user2302448

Reputation: 1275

Setup git in Intellij terminal

I want to use git in Intellij Terminal but it does not recognize the command. In Command Prompt and Windows power shell the command in recognized (I added the git path in System Environment Variables). I am also aware that Intellij has an GUI integration with Git.

So, can anyone tell me how can I use the git command in the Intellij terminal.

Upvotes: 127

Views: 148366

Answers (7)

John
John

Reputation: 336

In my case, the Git Bash through IntelliJ had TERM=xterm-256color. Regular Git Bash had TERM=xterm

To fix the garbled characters issue in IntelliJ Idea, Go to "File | Settings | Tools | Terminal"

Environment Variables:  TERM=cygwin

In IntelliJ Terminal, Shell Path I was using was already:

C:\Users\<userId>\programs\Git\bin\bash.exe --login -i

Upvotes: 2

jpmottin
jpmottin

Reputation: 3027

For me, it works also but only the path of Git Bash has changed in Windows :

"C:\Users\REPLACE_THIS_BY_YOUR_USER\AppData\Local\Programs\Git\bin\sh.exe" --login -i

Upvotes: 7

Orachigami
Orachigami

Reputation: 706

In the IDEA settings make sure that your terminal path leads to "usr/bin" instead of "/bin".

IDEA terminal settings tab

As a result you will see pretty rich console output:

Result console output

Upvotes: 4

Daniel Czajka
Daniel Czajka

Reputation: 39

You don't need to reinstall anything. Go to:

  • File
  • Settings
  • Search for terminal
  • in shell path type: "C:\Program Files\Git\bin\sh.exe" --login -i (or another directory where you installed Git)

Upvotes: 1

Alvic
Alvic

Reputation: 49

The full path is not needed anymore (windows), I just replaced cmd.exe to sh.exe and bingo was his name O

Settings > Tools > Terminal > Shell path > sh.exe

Upvotes: 2

Oleksii Shovhenia
Oleksii Shovhenia

Reputation: 3702

Setup JetBrains(InteliJ, WebStorm, PHPStorm) IDE terminal to use GIT bash

  • File
  • Settings
  • (Enter 'Terminal' in search)
  • Change Shell path to:
"C:\Program Files\Git\bin\sh.exe" --login -i

or

"C:\Program Files\Git\bin\bash.exe"

If you have another directory for installed git change it respectively.

Upvotes: 327

Siamak
Siamak

Reputation: 25

This worked for me:

IntelliJ: File->Settings->Version Control->Git:

On the right side, Path to Git executable:

"C:\Program Files\Git\bin\git.exe"

Upvotes: -2

Related Questions