简体   繁体   中英

Mercurial; hg log command displays huge, unorganized list of files for rev 0 inside of a cloned repository

I'm brand new with mercurial, but I searched the net and couldn't find any information regarding this problem.

I've got a repository on Bitbucket which I am using to work from my laptop and my desktop.
The repository originated from my laptop and on that computer the hg log for rev 0 looks completely normal.

Today I cloned the repository onto my desktop for the first time, made my changes, made my commit, and pushed the changes.
For some reason on this computer, when I use the hg log command, or hg log -r 0 , I get a huge list without line breaks of all the files that were added to the repository on the original commit .

Am I missing something here?

Thank you

您是否尝试使用hg log的输出,如第11章所述。自定义Mercurial的输出

hg log -r 0 --template '{desc}\nfiles: {files}\n'

Check your configuration for verbose = True .

hg log doesn't list the files affected by a commit by default, but does when verbose is on.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM