2012-05-21 125 views

回答

4

hg status man page中沒有任何內容表明Mercurial直接支持該功能。

sed怎麼樣?

$ pwd 
/var/www/mysite 

$ hg st 
A static/logo.png 
M static/style.css 
? temp.txt 

$ hg st | sed -e "s~^\(.\) ~\1 ${PWD}/~g" 
A /var/www/mysite/static/logo.png 
M /var/www/mysite/static/style.css 
? /var/www/mysite/temp.txt 

您可以使用shell別名(在the manual描述),使水銀做到這一點,而不是常規的hg st的。

相關問題