MindBrain
MindBrain

Reputation: 7768

Git option not available under Version Control in Intellij

I have installed Git on my local machine. I am using Git as a DVCS tool for bitbucket. I have the .git folder inside my project directory as I had cloned the project. I want to integrate Git into IntelliJ Idea but however, I am not able to see this option under the Version Control Integration as below.

Git option not available under VCS

Upvotes: 8

Views: 28718

Answers (4)

codeaperature
codeaperature

Reputation: 1118

For me, the plugin was already installed and enabled (as suggest in one answer). Also, I didn't see the same version control menu (as seen in another answer). I also tried re-importing my project to no avail (as suggested by a 3rd answer). Finally, I realized I needed to 'trust project' and that worked to allow me to see the Git menus.

Upvotes: 0

user306479
user306479

Reputation: 11

incase it was working previously and stop working, then reimport your project:

  • open intellij
  • on right corner there is setting symbol
  • click on it
  • select option rebase
  • make sure you have open your source tree with correct login credential

Upvotes: 0

Rahul Baghaniya
Rahul Baghaniya

Reputation: 321

Go to Settings then click on Version Control. add git in VCS column from + button.

enter image description here

Upvotes: 7

Java Devil
Java Devil

Reputation: 10959

Go to File -> Settings or (Ctrl + Atl + S) Then select Plugins

Ensure you have the Git Integration plugin enabled for Intellij as seen here (disabled in picture). Install if not already.

enter image description here

Upvotes: 11

Related Questions