Mercurial > hg-stable
changeset 4477:6cbfa740c129
clone: checkout the "default" branch if available
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 01 Jun 2007 18:52:18 -0500 |
parents | 4ef8fdf57e39 |
children | b2b55acbacdd |
files | mercurial/hg.py |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hg.py Sat Jun 02 09:21:56 2007 -0500 +++ b/mercurial/hg.py Fri Jun 01 18:52:18 2007 -0500 @@ -218,7 +218,11 @@ dest_lock.release() if update: - _update(dest_repo, dest_repo.changelog.tip()) + try: + checkout = dest_repo.lookup("default") + except: + checkout = dest_repo.changelog.tip() + _update(dest_repo, checkout) if dir_cleanup: dir_cleanup.close()