Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于Git的问题:
对于远程项目,我想获取特定分支的最后提交信息(最后提交日期),而不进行克隆。
我看到我可以使用以下命令git ls-remote --heads ssh:<path>来获取所有分支。使用 awk 我可以获得以下分支列表:
git ls-remote --heads ssh:<path>
BranchA BranchB BranchC
对于每个分支,我想获取最后一次提交的日期,而不进行克隆。甚至可能吗?如果没有,还有哪些其他替代方法可以获取有关所有分支及其最后提交日期的信息。