只有當我有任何標記或書籤時,纔可以將空格字符作爲分隔符嗎?Mercurial模板:標記和書籤的分隔符
實施例:
hg log --template "{rev} {author} {tags} {bookmarks} {desc|firstline}\n"
Output:
3: Author1 TIP BKMRK_NAME Another commit
2: Author1 Third commit
1: Author1 TAG1 Second commit
0: Author1 Initial commit
不具有標籤或書籤打印空格字符的變更。我想那些抑制多餘的空格:
3: Author1 TAG_NAME BKMRK_NAME Another commit
2: Author1 Third commit
1: Author1 TAG1 Second commit
0: Author1 Initial commit
是的,就是這樣。我想我以前曾嘗試過類似的方式,但我只包含了「start_bookmarks = ...」這一行。僅這一行不起作用。 「書籤= ...」行是必需的。謝謝。 –