Gitee仓库上传流程
代码上传
1、初始化仓库
> git init
2、添加远程版本库
> git remote add origin [url]
2.1、拉取远程 README.md 文件,避免出现版本冲突!
> git pull origin master --allow-unrelated-histories
3、将文件添加到暂存区
> git add .
4、将文件添加到仓库
> git commit -m 初代版本
5、从将本地的分支版本上传到远程并合并(选其中一个即可)
# 合并
> git push origin master
# 强制合并
> git push origin master -f
PS:第一次上传会提示登录Gitee,输入Gitee账号和密码即可。
代码下载
> git clone [url]
本文来自博客园,作者:七月的枫丶 ,部分内容摘自互联网,转载请注明原文链接:https://www.cnblogs.com/easybook/p/16168224.html