Github上的Intellij-Share项目

时间:2016-12-02 02:02:09

标签: java maven github intellij-idea

我正在尝试从Intellij的Spring,Maven项目创建一个存储库,但是当我尝试在Github上“共享”它时,会发生这种情况。

http://prnt.sc/deaqyw

它不会推送src文件夹。

http://prntscr.com/dearlg

我还在Intellij版本控制中的忽略文件中有.idea文件夹。

在“目录”选项卡的“版本控制”选项卡中,我有src文件夹和项目的整个文件夹。

对不起我无法发布照片的链接。

2 个答案:

答案 0 :(得分:1)

Select Project
VCS > Import into Version Control > Share Project on GitHub

enter image description here

答案 1 :(得分:0)

转到github存储库  点击设置|向下滚动|删除存储库  在IntelliJ中打开项目并导航到以下路径:

单击VCS |导入int版本控制|在GitHub上分享Poject

这将打开一个新存储库名称和初始共享注释的窗口。 提供详细信息并按“确定”。你完成了。

或者

转到IntelliJ的终端窗口,按照给定的顺序执行以下命令行步骤:

#include <stdio.h>
#include <gsl/gsl_matrix.h>

#define rows 2
#define cols 3

int main () {
    const double data[rows*cols] = { 
        0.0, 0.1, 0.2,
        1.0, 1.1, 1.2,
    };  
    const gsl_matrix_const_view mat = gsl_matrix_const_view_array( data, rows, cols );
    for ( size_t row = 0; row < rows; ++row ) { 
        for ( size_t col = 0; col < cols; ++col ) { 
            printf( "\t%3.1f", gsl_matrix_get( &mat.matrix, row, col ) );
        }
        printf( "\n" );
    }
}