我以共享帳戶登錄,並希望以自己的身份快速提交一些更改。hg commit -u的git相當於什麼?
與Mercurial我會與-u
標誌
-u --user USER記錄中指定的用戶作爲提交者
hg commit -u '[email protected]'
我試圖
git commit --author='John Doe <[email protected]>'
做但沒有幫助。
由於該帳戶是共享的,這不利於 Using same git repository by multiple users
是使用git config
,然後刪除它,當我真正做過的唯一途徑?
雖然'--author' *做*工作(它設置提交的*作者*),它不會改變提交的*提交者*。要設置兩者,請參閱下面的吸血鬼答案(http://stackoverflow.com/a/42350173/1256452)。請注意,Mercurial沒有單獨的作者和提交者,只是作者。 – torek