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:

  1. hg pull, head
  2. hg merge, warned of outstanding uncommitted changes
  3. hg commit -m "pre merge commit", message saying nothing changed
  4. 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

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -