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

git 安装使用

时间:2017-09-07 20:20:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:nbsp   reset   conf   amp   opera   ruby   修改内容   number   lob   

系统ubuntu14.04

1.安装:sudo  apt-get install git

2.设置name and Email:

  git config --global user.name "Your Name"

  git config --global user.email "email@example.com"

3.创建版本库:

  在目录下执行命令:git  init

  提交: git  add  filename添加到暂存区

     git commit  filename  把暂存区内容提交到当前分支

4.查看状态:

  • 要随时掌握工作区的状态,使用git status命令。

  • 如果git status告诉你有文件被修改过,用git diff可以查看修改内容。

 

  • HEAD指向的版本就是当前版本,因此,Git允许我们在版本的历史之间穿梭,使用命令git reset --hard commit_id

  • 穿梭前,用git log可以查看提交历史,以便确定要回退到哪个版本。

  • 要重返未来,用git reflog查看命令历史,以便确定要回到未来的哪个版本

 

5.撤销修改:

场景1:当你改乱了工作区某个文件的内容,想直接丢弃工作区的修改时,用命令git checkout -- file

git checkout其实是用版本库里的版本替换工作区的版本,无论工作区是修改还是删除,都可以“一键还原”。

场景2:当你不但改乱了工作区某个文件的内容,还添加到了暂存区时,想丢弃修改,分两步,第一步用命令git reset HEAD file,就回到了场景1,第二步按场景1操作

 

6.要从版本库中删除该文件,那就用命令git rm删掉,并且git commit

$ git rm test.txt
rm ‘test.txt‘
$ git commit -m "remove test.txt"
[master d17efd8] remove test.txt
 1 file changed, 1 deletion(-)
 delete mode 100644 test.txt

  



git 安装使用

标签:nbsp   reset   conf   amp   opera   ruby   修改内容   number   lob   

原文地址:http://www.cnblogs.com/nanqiang/p/7491501.html

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