1.在所需要操作的文件夹 右键->Git Bash Here
2.进入命令行,设置基本信息(邮箱、用户名)
git config --global user.name “jy1219”
git config --global user.email “1433281050@qq.com”
3.将文件夹变为本地化仓库,运行后会生成.git文件
git init
4.复制仓库链接,将本地电脑链接码云项目
git remote add origin https://gitee.com/jy1219/agile-management-gadget
5.同步码云项目到本地
git pull origin master
6.将本地项目上传到码云对应的项目里面
6.1 添加文件到缓存区
git add .
6.2 为上传文件添加注释
git commit -m “first commit”
6.3 提交代码到码云
git push origin master
如果要克隆仓库到本地
git clone 仓库网址