git使用 与github搭配

2017-04-26  本文已影响24人  Archer_S
  1. 去github建库,这个不多介绍,可以自行百度
  2. 在自己电脑里新建一个路径
  3. 打开终端操
cd xxx
git init

xxx表示你电脑里本地的路径

  1. 本地库与远程库连接
git remote add origin xxxx (xxxx是你远程仓库的地址)
  1. 把远程仓库的内容拉下来
git pull origin master
  1. git常规操作
git add .
   git commit -m "修改了一点内容"

   git push origin master
rm -rf .git //git init的反操作
上一篇下一篇

猜你喜欢

热点阅读