Git 初次使用,公司局域网clone项目(Windows)

初次使用先配置用户名和邮箱

$ git config --global user.name "ITKouSyou"

$ git config --global user.email "[email protected]"

git使用ssh密钥

cd ~/.ssh如果没有就创建目录 

Git 初次使用,公司局域网clone项目(Windows)_第1张图片

然后打开C:\Users\Administrator\.ssh目录,复制id_rsa.pub文件中的内容,添加到公司Git网址的个人设置setting->SSH keys。

Git 初次使用,公司局域网clone项目(Windows)_第2张图片

Key里放复制来的内容,Title随意。然后在C:\Users\Administrator\.ssh目录下创建一个config文件

Git 初次使用,公司局域网clone项目(Windows)_第3张图片

config:

Host git.公司名.com.cn
	HostName git.公司名.com.cn
	Port 1875
	IdentityFile ~/.ssh/id_rsa

最后,你在自己计算机中创建一个项目空间,我的是E:\hx\gitWorkspace

然后右键选择Git Bash Here

Git 初次使用,公司局域网clone项目(Windows)_第4张图片

使用git clone git@git.公司名.com.cn... 命令下载项目 ok

下载完项目后要注意设置相关配置以及导入jar包,其中Maven的本地仓库配置可以使用自己的设置路径,因为我使用的是Windows,而公司给的settings配置地址是对于linux系统,可能会遇到没有仓库路径,导致出错。

项目导入时要注意JDK和Maven的设置

 

1、 File - Project Structure - Project SDK,看看SDK有没有选,重选一个本地的自己安装的jdk。

Git 初次使用,公司局域网clone项目(Windows)_第5张图片

2、编译器中的maven有没有设置成功,File - Settings - 搜索maven,Maven home directory,设置为自己安装的maven路径

Git 初次使用,公司局域网clone项目(Windows)_第6张图片

你可能感兴趣的:(Git)