20 lines
373 B
Plaintext
20 lines
373 B
Plaintext
|
|
|
|
# To update a repository that has been cloned from someone elses, run the command:
|
|
#
|
|
# hg pull
|
|
#
|
|
# Note!
|
|
# This adds changesets to your repository, but DOES NOT update
|
|
# the workin copy. Run 'hg update' afterward
|
|
#
|
|
hg pull
|
|
|
|
|
|
# To update the content from the repository, or in other words, to get a working
|
|
# copy, run the command:
|
|
#
|
|
# hg update
|
|
#
|
|
hg update
|