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.
我试过了
hg log --rev "branch([changeset])"
但我得到的是这个分支中所有变更集的集合。
我想要得到的是目标分支的名称(例如默认)而不是整个集合。
有没有办法实现这个目标?
那是...不是修订集的用途。你想做一些完全不同的事情:
hg log --rev [changeset] --template "{branch}\n"
见hg help templates。
hg help templates