git 常用指令小结

"博学之审问之慎思之明辨之笃行之。"

Posted by Bobin on February 28, 2017

Git 常用指令

如何使用git指令提交github 这里做了一些介绍

  1. http://guoyunsky.iteye.com/blog/1308481
  2. https://git-scm.com/book/zh/v1/Git-%E5%9F%BA%E7%A1%80-%E8%AE%B0%E5%BD%95%E6%AF%8F%E6%AC%A1%E6%9B%B4%E6%96%B0%E5%88%B0%E4%BB%93%E5%BA%93
  3. https://www.zhihu.com/question/19946553

一些教程

Git Book - https://git-scm.com/book/zh/git 简明指南 - git - the simple guide 常用 Git 命令清单 http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html 猴子都能懂的GIT入门 - http://rogerdudler.github.io/git-guide/index.zh.html Git教程 - 廖雪峰的官方网站 http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000

一些基本指令

本体仓库

  1. 初始化
    git init
    
  2. 增加新文件,可用通配符
    git add <path>/filename
    
  3. 修改之后的文件,可用通配符
    git stage <path>/filename
    
  4. 删除文件,可用通配符
    git rm <path>/filename
    
  5. 提交至本地仓库
    git commit -m “commit message”
    

与远程交互

  1. 在本地仓库中添加远程信息。
    git remote add origin git@github.com:username/new_repo
    

    使用这个命令的好处是因为链接使用的是ssh,不用每次都输入密码。

  2. 更新本地仓库到远程仓库
    git push -u origin master