git 一行显示 commit-ID 分支名 提交说明
一、一行显示 commit-ID 分支名 提交说明
branch_name=`git branch --show-current`; curr_commit_ID=`git log -1 --format="%H %s"`; echo "$branch_name $curr_commit_ID"

branch_name=`git branch --show-current`; curr_commit_ID=`git log -1 --format="%H %s"`; echo "$branch_name $curr_commit_ID"
