标签: linux scripting gitlab
想写一个post post hook,它可以返回当前的存储库SSH地址,例如 git@abc-git.anything.com:root / test-project.git , 我在post post hook中使用了这个
var_ssh="$( git remote -v )" # get the current project ssh address echo $var_ssh
但它没有显示任何内容!