linux下git status后截取其中的分支名

当我git status时,会出现如图:图片描述

然后我想要从中截取出我的分支名就是 “feature/gengxiankun20160504”这个字符串,我用grep,后把结果赋给变量
图片描述

请问怎么操作这个字符串变量能截取到我的分支名?我的分支名不固定

回答:

 git branch -v|grep \*|awk '{print $2}'

回答:

git status | grep 'On branch' | cut -d' ' -f4

以上是 linux下git status后截取其中的分支名 的全部内容, 来源链接: utcz.com/p/193836.html

回到顶部