Git

Posted chuck11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git相关的知识,希望对你有一定的参考价值。

1 配置


本地git配置在~/.gitconfig中。

也通过git命令对配置进行修改,以下增加快捷键:

git config --global alias.st "status"
git config --global alias.co "checkout"
git config --global alias.br "branch"
git config --global alias.sh "stash"
git config --global alias.lg "log --color --graph --pretty=format:‘%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset‘ --abbrev-commit"

 

 

2 命令


2.1 init

git init

建一个空的仓。

 

2.2  add

git add .

 

2.3 commit

git ci -m "xxxx"

 

2.4 branch

2.4.1 显示当前分支

git br

2.4.2 创建分支

git br xxx

只是创建,仍然在当前分支。

可以一次创建多个分支:

git br a b

 

2.4.3 创建分支并且切过去

git co -b xxx      //其实它是checkout命令,只是创建分支同时切过去非常常用,就放在branch这一章

2.4.4 删除分支

git br -d xxx

 可以一次删除多个分支:

git br -d a b

 

2.5 checkout

2.5.1 切换分支

git co xxx

 

以上是关于Git的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段