Git Alias

1、在 .gitconfig 文件进行别名配置

在用户目录下,有一个 .gitconfig 文件,通过配置 [alias] 组来配置命令的别名
image.png

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

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

Git中的别名(alias)配置规则是这样的。

  1. git config --global alias.[new_alias] "[previous_git_command]"
  2. # Example
  3. git config --global alias.save commit

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

3、常用的别名命令配置

  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

git recommit

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

git commit --amend 允许更改最后的提交信息(message)。recommit命令让提交变得更简单,更容易记住。

  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

git commend

  1. git config --global alias.commend 'commit --amend --no-edit'

使用--no-edit标志进行修改,可以在最近一次提交时在仓库中提交新的更改,不需要再次重复提交消息。
解释一下这个命令,是否有这种经历,写完代码了 git add .git commit xxx ,一顿操作,刚想push 的时候发现 有个文件漏改了,又是 git add .git commit xxx 一顿操作,此时 commit 就会有两次记录,这对于项目来说是非常不好的,一次 commit 被分成了两次,如果遇到需要revert 就傻眼了。这个时候就可以用这个命令轻松解决。
代码演示

  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

此时git log依然只有一次记录。

git search

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

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

  1. git search createHotContext

git here

  1. git config --global alias.here '!git init && git add . && git commit -m "init Pro"'

通常初始化一个新的仓库时,将暂存所有文件,并使用初始提交消息进行提交。使用git here一步就完成了(这对于开源工具重度爱好者,真的是福星)。只需在要创建新仓库的文件夹中运行它,就可以了。

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

  1. git config --global alias.here '!git init && sh ~/my/git.sh && git add . && git commit -m "init Pro"'

这样子,既可以提交到私有仓库,创建开源项目的时候又不耽误。

git who

  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?")

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

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

git zip

  1. git config --global alias.zip 'archive --format=tar.gz -o repo.tar.gz'
  2. # Example
  3. git zip [branch_name]

使用 archive命令可以创建整个或部分仓库的 tarballzipgit zip 更容易记住。只需添加分支名称。

  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

git newbie

  1. git config --global alias.newbie 'checkout --orphan'
  2. # Example
  3. git newbie [new_branch_name]

带有--orphan 标志的git checkout允许创建一个分支,而没有来自父分支的任何历史记录。

  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)

实践

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

git clonely

  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.

带有--single-branch --branch标志的git clone允许从存储库中clone特定分支。

作用

当然是减少clone时间,这对大仓库而言简直是福星。

git plg

  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

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

git fresh

  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

通过一系列参数,使用fresh命令用于从子文件夹中创建新的存储库。带有多个参数的 filter-branch获取指定子文件夹的内容,并将其中的内容替换为该子文件夹的内容。

实践

假设有这样一个项目,目录结构如下

  1. .
  2. ├── script
  3. └── index.js
  4. ├── README.md

如果需要改造项目,将 script 作为单独的项目, 这个时候需要将 script 拆出来,一般会通过拷贝来解决,这样做没有什么问题,但是将丢失script目录以及子文件所有历史修改记录。
现在成功将 script 目录拆成了单独的项目。

  1. git fresh script master

再来看 commit 记录,依旧保留了script 的相关commit记录,对于管理项目来说非常有帮助。

  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