Git for 码云 (粘贴的做下笔记)
2018-05-10 本文已影响205人
SunnyLeong
一直都是用SVN管理代码,最近想自己写写代码放到码云上,网上也有很多步骤,但是试验下来,各种问题,代码却一直没传上去,都快要放弃了,最后打开xcode研究了下,就用xcode把代码上传上去了。
具体操作步骤如下:
1、在码云上创建好空的项目。
2、使用git clone https://git.oschina.net/xxxxx/xxx.git克隆到本地。
3、把你要上传的项目copy到你克隆的那个目录。
4、git add .(将改动添加到暂存区)。
5、git commit -m ''提交说明''
6、git push origin master 将本地更改推送到远程master分支
这一步报错的话,执行下面的命令行
git pull origin master
然后再执行第6步,不会再报错。
但是再去码云上看,并没有发现代码。
用xcode打开项目,
image在这里commit,在出来的界面,选中要上传的文件/文件夹,提交,再去码云看,本地的项目代码都已经在码云的空项目中。
501 cd /Users/liangyanguang/Desktop/PersonalTrainer
502 ls
503 git clone https://gitee.com/TechnicalTalent/Persona.git
504 git add .
505 ls
506 cd Persona
507 git add .
508 git status
509 git commit -m "私教 APP 创建"
510 git push orign master
511 git push origin master