正所谓,岁月不饶人,人一上年纪,难免会言帚忘笤,记忆不如以前。对于一个使用git分支,且经常来回切换的人来说,想要回忆起上一个分支,也算是比较有难度的一件事。
于是就有了我们今天的问题,如何查看git仓库中最近修改的分支。最开始从Google搜索找到了Stack Overflow上的这个方法
git for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='%(refname:short)'
执行效果如下
看起来还不错。稍后我们可以使用alias类似如下
alias gitRecent="git for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='%(refname:short)'"
写入到.bashrc文件。以后我们就可以使用gitRecent来更加快速使用了。
正所谓方法总比问题多,想要查看最近的分支,也可以使用这个插件。
git-recent Typegit recentto see your latest local git branches
效果会更加炫酷一些。
安装方法也很简单
npm install --global git-recent
或者在Mac环境下使用homebrew来安装
brew install git-recent
感兴趣的,可以访问[git-recent](https://github.com/paulirish/git-recent)了解更多。
本文纯属工具和命令推荐,希望能提升你的效率和解决遇到的问题。
领取专属 10元无门槛券
私享最新 技术干货