Git 提交代码

2017-02-15  本文已影响14人  魔性佛心

代码从零开始

你可以在本地创建一个空白的文件夹,然后克隆刚刚创建的项目(ps: clone url 在项目主页的右下方位置可以找到)本地,然后添加代码再上传。

mkdir emptyFolder
cd emptyFodler
git clone https://github.com/youraccount/yourproject.git

然后剩下的就是git add和git push的事情。

本地已经存在代码

  git add .  //注意还有一个小圆点
  git commit -m "some message for this project."
 git pull https://github.com/youraccount/yourproject.git
git remote add origin https://github.com/youraccount/yourproject.git
 git push -u origin master

Git 给出的帮助 创建 README

echo "# IAPStoreDemo" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jimingxin/IAPStoreDemo.git
git push -u origin master
上一篇 下一篇

猜你喜欢

热点阅读