Git Alias

<font style="color:#000000;">.gitconfig</font> 文件进行别名配置

在用户目录下,有一个 <font style="color:#000000;">.gitconfig</font> 文件,通过配置 <font style="color:#000000;">[alias]</font> 组来配置命令的别名

Git配置命令的别名 - 图1

  1. [alias]
  2. rhm = reset --hard origin/master
  3. st = status
  4. br = branch

通过git命令行命令进行别名配置

Git中的别名(alias)配置规则是这样的。
  1. git config --global alias.[new_alias] "[previous_git_command]"
  2. # Example
  3. git config --global alias.save commit

Git配置命令的别名 - 图2

配置完成后,可以看到在.gitconfig文件中出现了定义的内容

Git配置命令的别名 - 图3

在 ~/.bashrc 或 ~/.zshrc 中添加命令别名

  1. alias gst='git status'
  2. alias gaa='git add .'
  3. alias gcm='git commit -m'
  4. alias gco='git checkout'
  5. alias gpl='git pull'
  6. alias gps='git push'

常用的别名命令配置

  1. [alias]
  2. recommit = commit --amend -m
  3. commend = commit --amend --no-edit
  4. here = !git init && git add . && git commit -m \"Initialized a new repository\"
  5. search = grep
  6. who = blame
  7. zip = archive --format=tar.gz -o ../repo.tar.gz
  8. clonely = clone --single-branch --branch
  9. plg = log --graph --pretty=format:'%C(yellow)%h%Creset -%Cred%d%Creset %s %Cgreen| %cr %C(bold blue)| %an%Creset' --abbrev-commit --date=relative
  10. fresh = filter-branch --prune-empty --subdirectory-filter

<font style="color:#000000;">git recommit</font>

  1. git config --global alias.recommit 'commit --amend -m'

<font style="color:#000000;">git commit --amend</font> 允许更改最后的提交信息(<font style="color:#000000;">message</font>)。<font style="color:#000000;">recommit</font>命令让提交变得更简单,更容易记住。

  1. # Change the last commit message with recommit
  2. git recommit "New commit message"
  3. # [master 64175390] New commit message
  4. # Date: Tue Sep 22 15:09:11 2020 +0000
  5. # 1 file changed, 2 insertions(+)
  6. # create mode 100644 vue.js

<font style="color:#000000;">git commend</font>

  1. git config --global alias.commend 'commit --amend --no-edit'
使用<font style="color:#000000;">--no-edit</font>标志进行修改,可以在最近一次提交时在仓库中提交新的更改,不需要再次重复提交消息。

解释一下这个命令,是否有这种经历,写完代码了 <font style="color:#000000;">git add .</font><font style="color:#000000;">git commit xxx</font> ,一顿操作,刚想<font style="color:#000000;">push</font> 的时候发现 有个文件漏改了,又是 <font style="color:#000000;">git add .</font><font style="color:#000000;">git commit xxx</font> 一顿操作,此时 <font style="color:#000000;">commit</font> 就会有两次记录,这对于项目来说是非常不好的,一次 <font style="color:#000000;">commit</font> 被分成了两次,如果遇到需要<font style="color:#000000;">revert</font> 就傻眼了。这个时候就可以用这个命令轻松解决。

代码演示

  1. echo 'Hello world' > README.md
  2. git add .
  3. git commit -m "Hello Word"
  4. git log --oneline
  5. 4b39c8a (HEAD -> master) Add README.md
  1. echo 'Hello Fcant' >> README.md
  2. git commend
  3. git log --oneline
  4. 60c5190 (HEAD -> master) Add README.md
此时<font style="color:#000000;">git log</font>依然只有一次记录。

<font style="color:#000000;">git search</font>

  1. git config --global alias.search 'grep'
  2. # Example
  3. git search [search_term]

<font style="color:#000000;">git grep</font>允许在存储库中搜索关键字(且支持正则),并返回各种匹配项。但是 <font style="color:#000000;">grep</font> 一般在使用Linux的匹配搜索比较常见,中文环境下使用 <font style="color:#000000;">search</font>易于记住并且易于使用。

  1. git search createHotContext

<font style="color:#000000;">git here</font>

  1. git config --global alias.here '!git init && git add . && git commit -m "init Pro"'
通常初始化一个新的仓库时,将暂存所有文件,并使用初始提交消息进行提交。使用<font style="color:#000000;">git here</font>一步就完成了(这对于开源工具重度爱好者,真的是福星)。只需在要创建新仓库的文件夹中运行它,就可以了。

小技巧: 在公司开发代码需要提交到公司的私有仓库,因此全局配置了公司的 username 和 email,当切换到开源项目的时候,是会忘记修改回来,因此会创建一个 <font style="color:#000000;">git config user.name xxx \n git config user.email xxx@xx.com</font> 的一个 sh文件。因此初始化的时候可以这样 。

  1. git config --global alias.here '!git init && sh ~/my/git.sh && git add . && git commit -m "init Pro"'
这样子,既可以提交到私有仓库,创建开源项目的时候又不耽误。

<font style="color:#000000;">git who</font>

  1. git config --global alias.who 'blame'
  2. # Example
  3. git who index.ts
  4. # 641753902 (Ephraim Atta-Duncan 2020-09-22 15:09:11 +0000 1)
  5. # 641753902 (Ephraim Atta-Duncan 2020-09-22 15:09:11 +0000 2) console.log("who?")

<font style="color:#000000;">git blame</font> 用于逐行检查文件的内容,并查看每行的最后修改时间以及修改的作者。如果有错误,可以追溯到某一行的改动是谁修改的。vscode 插件 <font style="color:#000000;">GitLens</font>也是基于此原理。

总结: 追踪 bug 小能手,以后谁写出bug,轻松定位某一行是谁写的。

<font style="color:#000000;">git zip</font>

  1. git config --global alias.zip 'archive --format=tar.gz -o repo.tar.gz'
  2. # Example
  3. git zip [branch_name]
使用 <font style="color:#000000;">archive</font>命令可以创建整个或部分仓库的 <font style="color:#000000;">tarball</font><font style="color:#000000;">zip</font><font style="color:#000000;">git zip</font> 更容易记住。只需添加分支名称。
  1. git-fcant git:(master) ls
  2. README.md
  3. git-fcant git:(master) git zip master
  4. git-fcant git:(master) ls
  5. README.md repo.tar.gz

<font style="color:#000000;">git newbie</font>

  1. git config --global alias.newbie 'checkout --orphan'
  2. # Example
  3. git newbie [new_branch_name]
带有<font style="color:#000000;">--orphan</font> 标志的<font style="color:#000000;">git checkout</font>允许创建一个分支,而没有来自父分支的任何历史记录。
  1. git-fcant git:(master) git newbie pages
  2. Switched to a new branch 'pages'
  3. git-fcant git:(pages) ls
  4. README.md
  5. git-fcant git:(pages) git log
  6. fatal: your current branch 'pages' does not have any commits yet
  7. git-fcant git:(pages)

实践

它的应用场景 还记得<font style="color:#000000;">github pages</font> 吗,利用他能快速创建站点,可以用某个分支来当做站点展示,但是如果把源码和打包后的文件都放在一个分支,就会显得累赘与混乱,这个时候就可以利用这个特性来创建一个全新无 <font style="color:#000000;">commit</font> 的分支。两个工程(一个源文件工程,一个打包后的工程)放到同一个仓库(repo)中。

代码演示

  1. git-fcant git:(master) git newbie pages
  2. Switched to a new branch 'pages'
  3. git-fcant git:(pages) ls
  4. README.md
  5. git-fcant git:(pages) git log
  6. fatal: your current branch 'pages' does not have any commits yet
  7. git-fcant git:(pages) git st
  8. On branch pages
  9. No commits yet
  10. Changes to be committed:
  11. (use "git rm --cached <file>..." to unstage)
  12. new file: README.md
  13. git-fcant git:(pages)

<font style="color:#000000;">git clonely</font>

  1. git config --global alias.clonely 'clone --single-branch --branch'
  2. # Example
  3. git clonely [branch_name] [remote_url]
  4. git clonely v3 https://github.com/vuejs/vue-apollo
  5. # Cloning into 'vue-apollo'...
  6. # remote: Enumerating objects: 2841, done.
  7. # remote: Total 2841 (delta 0), reused 0 (delta 0), pack-reused 2841
  8. # Receiving objects: 100% (2841/2841), 1.92 MiB | 330.00 KiB/s, done.
  9. # Resolving deltas: 100% (1743/1743), done.
带有<font style="color:#000000;">--single-branch --branch</font>标志的<font style="color:#000000;">git clone</font>允许从存储库中<font style="color:#000000;">clone</font>特定分支。

作用

当然是减少<font style="color:#000000;">clone</font>时间,这对大仓库而言简直是福星。

<font style="color:#000000;">git plg</font>

  1. git config --global alias.plg "log --graph --pretty=format:'%C(yellow)%h%Creset -%Cred%d%Creset %s %Cgreen| %cr %C(bold blue)| %an%Creset' --abbrev-commit --date=relative"
  2. # Example
  3. git plg # plg - Pretty Log

<font style="color:#000000;">git log</font>没什么问题,除了它有点丑陋,没有颜色差异,如果要自定义它,需要在 google 上查询相关的命令。幸运的是有别名(alias)。使用该命令的别名,将获得非常漂亮的日志。

<font style="color:#000000;">git fresh</font>

  1. git config --global alias.fresh "filter-branch --prune-empty --subdirectory-filter"
  2. # Example
  3. git fresh [subfolder] [branch_name]
  4. git fresh src main # Don't do this unless you know what you are doing
通过一系列参数,使用<font style="color:#000000;">fresh</font>命令用于从子文件夹中创建新的存储库。带有多个参数的 <font style="color:#000000;">filter-branch</font>获取指定子文件夹的内容,并将其中的内容替换为该子文件夹的内容。

实践

假设有这样一个项目,目录结构如下
  1. .
  2. ├── script
  3. └── index.js
  4. ├── README.md
如果需要改造项目,将 <font style="color:#000000;">script</font> 作为单独的项目, 这个时候需要将 <font style="color:#000000;">script</font> 拆出来,一般会通过拷贝来解决,这样做没有什么问题,但是将丢失<font style="color:#000000;">script</font>目录以及子文件所有历史修改记录。 现在成功将 <font style="color:#000000;">script</font> 目录拆成了单独的项目。
  1. git fresh script master
再来看 <font style="color:#000000;">commit</font> 记录,依旧保留了<font style="color:#000000;">script</font> 的相关<font style="color:#000000;">commit</font>记录,对于管理项目来说非常有帮助。
  1. commit 8b311558195684d6420baedce74e0f9951208038 (HEAD -> master)
  2. Author: qiufeng <qiufeng@163.com>
  3. Date: Thu Oct 1 22:37:21 2020 +0800
  4. feat: script
  5. (END)
如果不小心拆分错了,还可以进行还原。
  1. git reset --hard refs/original/refs/heads/{branch_name}
还可以继续拆分,这个时候拆分需要先清除一下备份
  1. git update-ref -d refs/original/refs/heads/master