mercurial - hg merge says outstanding uncommitted changes; hg commit says nothing changed -- how to exit the loop? -
the problem here hg' workflow apparently leads in circle:
- hg pull, head
- hg merge, warned of outstanding uncommitted changes
- hg commit -m "pre merge commit", message saying nothing changed
go 2 hg status, see output following:
! #foo.py# ? junk.out ? junk2.out
if foo.py in list of .hg-ignore'd files try specifying explicity on command line when commit.
e.g.
hg commit -m "commit message" ./#foo.py edit: looking more closely @ error: file has been deleted (! in status list), hg hasn't tracked deletion. need tell hg deletion using:
hg rm -a ./foo.py the -a / --after means record removal after occured
Comments
Post a Comment