第一 安装 GIT
git安装包下载路径: https://git-scm.com/downloads git简单使用教程: https://www.cnblogs.com/ximiaomiao/p/7140456.html 第二 安装idea 码云插件 gitee File > Setting > Plugins > Browse repositories > 输入框中搜索GITEE安装 gitee使用教程: http://blog.csdn.net/u010318957/article/details/72512702 第三 git 常用命令 创建新的仓库 git init 生成公匙 ssh-keygen -t rsa -C "695908592@qq.com" 连接远程仓库地址 git remote add origin git@github.com:username/Hello-World.git 查看当前git远程仓库地址 git remote -v 删除指定name的git连接 git remote remove name 本地项目提交 git pull git pull origin master git pull origin master --allow 提交新文件的分三步 git add git comit git push 本地公匙与网站头像公匙相同才能push C:\Users\hasee\.ssh 第四 遇到的坑 idea码云插件总是登陆不上去,只能用邮箱账号登陆,不能使用手机号,密码不能存在特殊字符; 公匙生成命令运行在git 命令窗口,公匙key自定义,公匙value是 C:\Users\hasee\.ssh\id_rsa.pub中的内容; 本地公匙与网站头像公匙相同才能push。