码云git的学习旅程

首先现在去下载一个git(windows)

地址https://git-scm.com/downloads

一直默认安装就可以,安装完到任意地方右击点开出现Git bash here 能打开命令行 即安装完成

然后操作git命令行

首次使用码云配置 输入:

git config --global user.email "[email protected]"   ----你的注册邮箱
git config --global user.name "Your Name"   ----你的名字

对目标进行克隆或者下载工程

在命令行输入

git clone https://gitee.com/码云名字/项目名称.git

例如

git clone https://gitee.com/l-weiwei/spiderman.git
他就去自动去下载项目去了

对当前目录进行初始化。输入:

git init

后面的gui操作 可以参考

https://www.cnblogs.com/lanxiang/p/7487971.html

eclipse插件上传代码

https://blog.csdn.net/hmy1106/article/details/51925172

https://blog.csdn.net/LanTingShuXu/article/details/53563433

eclipse下载git代码

https://blog.csdn.net/LanTingShuXu/article/details/53563433

假如要让别人来提交代码,要去项目管理添加对应的成员才可以

pull是更新 push是上传 上传前必须有更新信息

Import Maven项目 无法构建项目解决方法

https://blog.csdn.net/qq_36748278/article/details/78239032

猜你喜欢

转载自blog.csdn.net/jiulanhao/article/details/82423215