美文网首页git studyGit
git 基本的命令

git 基本的命令

作者: Programmer客栈 | 来源:发表于2016-09-25 15:17 被阅读34次

    1.新建一个仓库

    2.生成Key

    3.clone

    4.添加文件

    5.git    add

    6.git    commit  -- m'des'

    7.git    push

    从git到本地

    打开要放置这个文件的文件夹或者重新建一个,然后从这里面打开终端

    git clone 复制粘贴

    //刚开始建仓库文件时

    git clone 复制粘贴xinlingzuishenchu.github.io

    touch 123.html

    git add .

    git commit -m "说明"

    git push

    修改以后从本地到git

    git pull

    git add .

    git commit -m "说明"

    git push

    相关文章

      网友评论

      • hainuo:需要再整理下,既然分享给别人看要增加相应的说明 基础的git分享在本类目中有一些了,建议看一下其中比较好的几篇

      本文标题:git 基本的命令

      本文链接:https://www.haomeiwen.com/subject/jysfyttx.html