1

In git this would be just a pull, but in Mercurial pull and update are separate operations. I hate having to say "do a pull and update" when telling someone how to grab the latest code, because it's so wordy. Is there a word for "pull and update" I can substitute this with?

(different from alleged "duplicate" question because I'm asking about terminology, not actual commands)

ekolis
  • 6,270
  • 12
  • 50
  • 101

1 Answers1

2

No. You can tell them to do hg pull --update or hg pull -u. You could also make a shell alias that does that and call it something.

ngoldbaum
  • 5,430
  • 3
  • 28
  • 35
  • This is the best answer. You can also add --rebase. – Craig Jan 17 '19 at 16:49
  • Given the problematic aspects of `fetch`, a reasonable word to use informally (and perhaps as a user-defined alias for `hg pull -u`) would be "resync". – peak Jan 18 '19 at 11:12