git常用的一些操作

版本回滚

  1. 首先可以 使用git log 查看信息
commit 7d36f4468f3b910ebe1754b786f4a39cac367119
Author: luyunfeng 
Date:   Tue May 15 09:53:46 2018 +0800

    分支测试

commit
Author: luyunfeng 
Date:   Mon May 14 18:57:47 2018 +0800

    提交一下

commit c17b435aff708225ae42747a1985d5f77972b8d0
Author: luyunfeng 
Date:   Tue May 8 10:27:16 2018 +0800

    提交一下

commit 02e441add67d9109468259f2d2086dc349f6fd4c
Author: luyunfeng 
Date:   Fri Apr 27 17:44:09 2018 +0800

    初始化

commit 912be8e0a6ed29efc56b3e7a5fe68a45e5c2c6ac
Author: lucode 
Date:   Fri Apr 27 17:41:07 2018 +0800

    Initial commit

  1. 接着可以 找到需要回滚到的版本
    假设回归到 310ff451b9537cb502c57db3ac085d35e8fe2cf4
    输入 指令
    git reset --hard 310ff451b9537cb502c57db3ac085d35e8fe2cf4

marge代码

最好不要用idea操作
假设 其他分支(a分支) 需要 合并 master 的代码(就是 拿到 master的代码)
那么当前应该在 a 分支
然后 点击

image.png

完成合并

git配置文件config用户名和邮箱的设置和查看

1.设置用户名
$ git config --global user.name "yourname"  

2.设置用户邮箱
$ git config --global user.email [email protected]   

3.查看git设置列表信息
$ git config --list   

4.查看用户名
$ git config user.name 

Git鼓励大量使用分支

查看分支:git branch

创建分支:git branch

切换分支:git checkout

创建+切换分支:git checkout -b

合并某分支到当前分支:git merge

删除分支:git branch -d

你可能感兴趣的:(git常用的一些操作)