标签: bash macos terminal
目标是创建一种可以grep和git checkout进行分支搜索的方法。
git checkout
function gf { result=$(git branch -l | grep "$1"); git checkout $result; } export -f gf
这样一个人就可以做..
gf 150_
然后我会立即进入选择的分支。
不幸的是,我的方法无效。