How to setup github repository in my NetBeans IDE?

后端 未结 5 1350
遥遥无期
遥遥无期 2020-12-30 08:13

I am very new to Github. I just created one github account and it says as bellow:

Step 1)

Global setup:
 Set up git
  git config --global user.name          


        
5条回答
  •  离开以前
    2020-12-30 08:58

    Open your terminal, enter your project root fold, and add your remote:

    $ cd path/to/your/projcet
    $ git remote add origin git@github.com:me/java.git

    I think it should detect your setting, then check how your IDE set your github repository.

提交回复
热议问题