1.在coding上建立一个空项目
项目名和本地的项目名一样
2.本地项目推送的空项目
本地建立仓库和线上关联起来
mkdir test1
cd test1
git init
echo "# test1" >> README.md
git add README.md
git commit -m "first commit"
git remote add origin https://git.coding.net/iOS_wcj/test1.git
git push -u origin master
网友评论