其他分享
首页 > 其他分享> > git使用笔记整理

git使用笔记整理

作者:互联网

1.背景

对git的使用笔记零散,做一个整合

2.git大全

git官方文档

2.1 git配置

配置生效级别

## 对系统中所有用户有效
git config --system -e
## 对当前用户有效
git config --global -e
## 对当前项目有效
git config -e

用户信息,还可以设置文本编辑器、差异分析工具等

$ git config --global user.name "jacob"
$ git config --global user.email jacobap@163.com

查看配置信息

$ git config --list
http.postbuffer=2M
user.name=jacob
user.email=jacobap@163.com
# 或者直接查看某个变量的值
$ git config user.name
jacob

2.2git创建仓库

#使用当前目录作为 Git 仓库,我们只需使它初始化
git init
#当前目录若干文件纳入版本控制
git add xxx.file
git commit -m "初始化"

#克隆
git clone <repo> <dir>

2.3 git基本操作


2.4 git分支管理

#创建分支
git branch (branchname)
#切换分支
git checkout (branchname)
#合并分支
git merge

#列出所有分支
git branch
#创建并切换到新分支
$ git checkout -b newtest
Switched to a new branch 'newtest'

#删除分支
git branch -d xxx
#合并目标分支到当前分支。将test分支合并到当前分支
git merge test 

#合并冲突
#在 Git 中,我们可以用 git add 要告诉 Git 文件冲突已经解决
$ git status -s
UU runoob.php
$ git add runoob.php
$ git status -s
M  runoob.php
$ git commit
[master 88afe0e] Merge branch 'change_site'

3.引用

git源码分析

标签:git,--,笔记,user,branch,整理,config,分支
来源: https://www.cnblogs.com/route/p/16497254.html