How to integrate bitbucket with intellij? - intellij-idea

Im trying to clone project from bitbucket in intellij, but I couldn’t establish connection between bitbucket and intellij?
How to generate rsa and dsa key in intellij to add in bitbucket?
Im not able to move forward from this first step, can somebody help me?
I know clone project in eclipse from bitbucket, but from intellij I couldn’t do that

Related

Cannot connect Intellij Ultimate 2016.2 to GIT using PKI

So, I have been trying on and off to get IntelliJ IDEA Ultimate to connect to our GitLab and JIRA server but both require the use of PKI and I cannot figure out how to get this to work. When attempting to use the VCS menu option for Git to pull or interact with Git, I get Git Pull Failed fata: Could not read from remote repository. If I am using the terminal screen within IntelliJ it works just fine after I enter my passphrase for the cert.
Now note that I am on a Windows system.
A colleague next to me has IntelliJ same version running on a Linux system and he is able to use the Git VCS menu features.
Anybody know how to get Windows to work properly with IntelliJ to Git and or JIRA?
Make sure you have the .ssh/config file in your user home that specified the key to use, by their full path. Then make sure you have Built-in SSH executable selected in Settings - Version control - Git
Workaround - use Native SSH executable and ssh-agent. A similar setup described here

Where can I find the IntelliJ SSH Remote Run Plugin?

I want to connect to a server via SSH directly in IntelliJ IDEA. Google's first search result links to the IntelliJ IDEA help manual about "Running SSH Terminal". In this guide's first step I am told that IDEA includes the "SSH Remote Run" plugin which I can't either find any information on or find it in the plugin repository of the IntelliJ platform.
This is the meant section of the manual page:
Make sure the SSH Remote Run plugin is enabled. The plugin is bundled with IntelliJ IDEA and activated by default. If the plugin is not activated, enable it on the Plugins page of the Settings / Preferences Dialog as described in Enabling and Disabling Plugins.

Cannot add framework support in IntelliJ 14 Ultimate

I found a pretty old post with this question but unfortunately he didn't get any help. I hope someone can assist me.
I created a repo at GitHub. After cloning it to my computer I tried to add the following framework support: Maven, JSF, EJB, CDI, etc. I know I could add the files manually. But, I want to use what the IDE has to offer.
However, the only framework showing up is SQL, which is different from this post from stackoverflow and from their documentation.
Has anyone had this same problem and got it working?
Intellij reacts to changes in your Maven pom.xml file. Maven does not react to changes in your IntelliJ project module settings.
The steps that you should follow here are
Close IntelliJ
In a command shell, clone your Github repository.
Using an editor external to IntelliJ such as VI or Notepad, create a pom.xml in the root directory. Better yet, use a Maven Archetype to generate your pom.xml.
Now open IntelliJ. Choose File, New, Project From Existing Sources. Navigate to your pom.xml and follow the prompts.
I recommend checking Search for projects recursively and Import Maven projects automatically.
Finish the project creation.
Now, add dependencies to your pom.xml via the dependencies tag. See Maven Dependencies. Intellij will automatically react to dependencies that you add as long as it can see a Maven Repository on your local machine or on your network or on the Internet.
I know it is a little bit to late but I just post it because it is still an possible issue: You need to open YourProjectName.iml and make sure that the type (<module type="JAVA_MODULE" version="4">) is JAVA_MODULE and not something else!(In my case it was WEB_MODULE)

Intellij plugin development, SDK source file content

I can't figure out how to add the Intellij SDK plugin development source files to be able to navigate the files.
Right now I am only getting a decompiled list. I'd like the comments as well.
Note, I know there is https://github.com/JetBrains/intellij-community/blob/master/platform/platform-impl/src/com/intellij/openapi/editor/actions/
But shouldn't these already be included?
Can someone explain how to add the sources? I tried from module settings but couldn't get that to work.
If you're developing a plugin, or viewing/modifying an existing one, I suggest you take a look at the IntelliJ SDK docs, especially the prerequisites section, which explains how to set up a proper development environment.
Basically, you should clone IntelliJ community using
git clone git://git.jetbrains.org/idea/community.git idea
Then configure an IntelliJ SDK, and in the Sourcepath tab, add the local git repo to attach the source code.

TeamCity 6.x and Mercurial via SSH (on Windows)

I'm trying to reconfigure our TeamCity build server (running on WIN 2008) and switch from SVN to Mercurial repository.
I use the following link as Configuring Mercurial (Hg) with TeamCity over SSH at RepositoryHosting.
I spent several days and still can't get it work.
I can reach the Mercurial repository from TeamCity (via Test Connect) and I can pull code from Mercurial via TrotoiseHG, but the build fails every time because TeamCity cannot pull source code from the server.
Does anybody had the same issue?
Have you tried using Agent-Side checkout instead of the default? Otherwise, TeamCity tries to "intelligently" detect changes and distribute them to build nodes. Failure can occur whenever something happens in the VCS that TeamCity doesn't understand how to replicate, such as using subrepos.