Git基本操作

上传本地代码到Github

  1. 在github上创建自己的Repository

如图所示:

创建项目

创建后Github给的提示

  1. 进入本地的项目目录

  2. 建立Git仓库

    1
    git init
  3. 将目录中的所有文件添加到仓库中

    1
    git add .
  4. 提交到仓库

    1
    git commit -m "提交说明"
  5. 将本地的仓库关联到github

    1
    git remot add origin [你的github项目地址]
  6. 上传前pull

    1
    git pull origin master
  7. 上传到Github远程仓库

    1
    git push -u origin master

可能会让你输入Username和Password,输入你的github账号及密码就可以了

好了,你的本地仓库就与github的远程仓库相关联了。

更新代码

在本地使用修改好了项目之后,需要将代码更新至github远程仓库

  1. 查看当前git仓库的状态

    1
    git status
  2. 更新所有内容

    1
    git add *
  3. 添加更新说明

    1
    git commit -m "说明"
  4. 拉取当前分支最新代码

    1
    git pull
  5. push到远程仓库的master分支

    1
    git push origin master

    OK,打开你的Github查看结果吧。

我的Notion上也有本文。传送门

© 2019 Forfly All Rights Reserved. 本站访客数人次 本站总访问量
Theme by hiero