码迷,mamicode.com
首页 > 其他好文 > 详细

Git 常用命令

时间:2019-07-12 21:21:25      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:install   soft   记录   分支   git clone   撤销   nbsp   text   文件   

Windows下使用git:

  1. 安装git for windows :Git-2.18.0-64-bit.exe
  1. 安装TortoiseGit: TortoiseGit-2.7.0.0-64bit.msi

ubuntu下安装git

  1. 输入命令:sudo apt-get install git

Clone 项目

git clone [address]

Git命令具体的使用,参考:

https://git-scm.com/doc

 

下面是一些常用的命令:

        git add –A ./docs/               repo里添加 ./docs目录里的所有文件

        git status                             查看确认所有变化的文件

        git commit -a –m “注释”      提交更改

        git log                                  查看history

        git push origin master         把master分支下的更改上传到服务器

        git pull --rebase                  从服务器更新代码

 

       commit-pull-push  3

       git reset --soft HEAD~        撤销commit记录

       git rm                                   删去文件操作

       git add ,git rm 等操作动作后,都需要提交你的操作记录git commit

Git 常用命令

标签:install   soft   记录   分支   git clone   撤销   nbsp   text   文件   

原文地址:https://www.cnblogs.com/bingoc/p/10727650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!