gitee 创建及本地导入gitee
1.gitee 新建 仓库
gitee 创建成功之后 右键 打开
本地新建文件夹 在项目中 git Bash Here
输入命令
首先 —> git init ---初始化本地仓库
然后 —> git remote add origin 码云仓库地址 例如:git remote add origin https://gitee.com/你的码云用户名/你创建的仓库名.git (在本地添加你得git远程仓库)
然后 —> git pull origin master
接下来可能会出现 ——>fatal: couldn't find remote ref master 不要慌咱们继续
然后 —> git log 查看记录
然后你会发现 ———> fatal: your current branch 'master' does not have any commits yet (卧槽啥情况!稳住~~~~)
然后 ——> git add . (点代表所有)
接下来会这样 (直接上图)
然后我们上传个版本 git commit -m "(第一次提交版本想说点啥说点啥吧~~~哈哈哈)"
最后给这个狗日得项目扔进 gitee 上去
git push https://gitee.com/你的码云用户名/你创建的仓库名.git
大功告成!!!! 码出未来 希望对需要得小白会有用~~~~~~
对了 !!! 然后你就去gitee 上去看你提交上的项目吧 拜~~~~
赠图一张