I need to set up Intellej in my machine with JDK and other congi and alos to set git i already have access for it

Shankar, Chandrakala 0 Reputation points
2026-07-30T11:31:44.56+00:00

I need to set up Intellej in my machine with JDK and other congi and alos to set git i already have access for it

Developer technologies | Visual Studio | Other
Developer technologies | Visual Studio | Other

A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.

0 comments No comments

1 answer

Sort by: Most helpful
  1. AI answer

    2026-07-30T11:32:00.4166667+00:00

    To set up IntelliJ IDEA with Java and Git on a machine, use this sequence:

    1. Install a supported JDK.
      • For Azure Java development in IntelliJ, supported JDK versions called out are Java 8, 11, 17, or 21 for Azure Functions.
      • Some newer Java modernization scenarios require Java 21 or later.
    2. Install IntelliJ IDEA.
      • IntelliJ IDEA Ultimate or Community Edition is supported in the Azure Toolkit for IntelliJ guidance.
      • For GitHub Copilot modernization scenarios, IntelliJ IDEA must be version 2023.3 or later.
    3. Install build tools if needed.
      • Install Maven 3.5.0+ for Java projects that use Maven.
      • Some scenarios also support Gradle.
    4. Install Git.
      • On Windows, install Git for Windows and keep the default installer options unless there is a reason to change them.
      • On macOS, install Git with Homebrew using brew install git.
      • On Linux, install Git with the distribution package manager, for example on Ubuntu: sudo apt-get install git.
    5. Configure Git after installation. Run:
         git config --global user.name "<First_name> <Last_name>"
         git config --global user.email "<user_email_address>"
      
    6. If Azure development is needed in IntelliJ, install Azure Toolkit for IntelliJ. In IntelliJ IDEA:
      • Select File > Settings
      • Select Plugins
      • Search the Marketplace tab for Azure Toolkit
      • Select Azure Toolkit for IntelliJ by Microsoft
      • Select Install
      • Restart the IDE if prompted
    7. If deploying Azure Functions from IntelliJ, also install the latest Function Core Tools.
    8. If using GitHub Copilot in IntelliJ, install the GitHub Copilot plugin and sign in within IntelliJ.

    A practical minimum setup for most Java work in IntelliJ is:

    • IntelliJ IDEA
    • JDK
    • Git
    • Maven

    A practical minimum setup for Azure Java work in IntelliJ is:

    • IntelliJ IDEA
    • Supported JDK
    • Git
    • Maven
    • Azure Toolkit for IntelliJ
    • Azure account sign-in in the toolkit

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.