version control - Updating project with my changes and other changes with TortoiseHg -


let's have repo a, main branch. clone repo repo b, in repo b make changes on period of time. decide clone repo again repo c, has repo has plus changes other users have made on time. using tortoisehg, how can can combine repo b , c can push them repo a?

pardon me if vocabulary isn't title or description, it's best way describe it.

you have pull (b->c or c->b direction):

  • you have know url of "foreign" repo
  • you have enable web-server on "foreign" repo (if it's remote repository not on local filesystem)
  • you have add url of "foreign" repo local's repo configuration (using gui - sync dialogue or adding new external repo [paths] section of repository's .hgrc) or fastest way pull console (one-time operation, yes?), using url of foreign repo in hg pull url command

as result you'll diverged history @ point, have merge in order push later without errors|warnings or --force pushes

i'm lazy show screenshots such easy task, can, if it's needed


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -