idea 使用 git 教程
1.下载 git
下载地址: https://git-scm.com/download/win
64-bit Git for Windows Portable(简单版本)
2.安装 git
bin 目录: E:gitbin
3.获取远程仓库地址
这个一般是由组长搭建,我们生成自己公钥给他就好,然后就可以拿到 远程仓库地址
# 生成公钥
ssh-keygen -t rsa -C "邮箱地址"
# 输入秘钥密码
4.配置全局用户名和邮箱
git config --global user.name "孔乙己"
git config --global user.email "kyj@gmail.com"
注意: 最好邮箱地址一致,用户名是提交代码是备注的用户名
5. 将当前项目目录和git远程仓库关联
# 将当前项目作为本地仓库
git init
# 将当前项目添加到git 缓存中
git add src
# 将缓存中的内容提交到git本地仓库
git commit -m "你妹的git"
# 将本地仓库和远程仓库关联
git remote add origin https://github.com/aaaa/aaa.git
# 将本地仓库中的项目提交到git远程仓库
git push -u origin master
6. 之后再idea 中就可以正常使用git了
7. 建议第一次使用git测试的idea用户按照以下流程使用
- 创建项目
- 将当前项目所在的目录作为git本地仓库
3.这是项目右键就会出现 <font color="lightgreen">git</font> 的选项了
- 输入注释,提交到本地仓库/推送到远程仓库
参考资料: https://www.cnblogs.com/nihao... 感谢 <font color="red">Nihaorz</font> 的无私分享
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。