##// END OF EJS Templates
largefiles: allow use of urls with #revision...
Mads Kiilerich -
r18489:f1700480 stable
parent child Browse files
Show More
@@ -165,6 +165,7 b' def _openstore(repo, remote=None, put=Fa'
165 path = ''
165 path = ''
166 remote = repo
166 remote = repo
167 else:
167 else:
168 path, _branches = hg.parseurl(path)
168 remote = hg.peer(repo, {}, path)
169 remote = hg.peer(repo, {}, path)
169
170
170 # The path could be a scheme so use Mercurial's normal functionality
171 # The path could be a scheme so use Mercurial's normal functionality
@@ -1619,7 +1619,7 b' Push a largefiles repository to a served'
1619 > --config 'web.allow_push=*' --config web.push_ssl=False
1619 > --config 'web.allow_push=*' --config web.push_ssl=False
1620 $ cat hg.pid >> $DAEMON_PIDS
1620 $ cat hg.pid >> $DAEMON_PIDS
1621 $ rm "${USERCACHE}"/*
1621 $ rm "${USERCACHE}"/*
1622 $ hg push -R r8 http://localhost:$HGPORT2
1622 $ hg push -R r8 http://localhost:$HGPORT2/#default
1623 pushing to http://localhost:$HGPORT2/
1623 pushing to http://localhost:$HGPORT2/
1624 searching for changes
1624 searching for changes
1625 searching for changes
1625 searching for changes
@@ -1632,8 +1632,7 b' Push a largefiles repository to a served'
1632
1632
1633 Clone over http, no largefiles pulled on clone.
1633 Clone over http, no largefiles pulled on clone.
1634
1634
1635 $ hg clone http://localhost:$HGPORT2/ http-clone -U
1635 $ hg clone http://localhost:$HGPORT2/#default http-clone -U
1636 requesting all changes
1637 adding changesets
1636 adding changesets
1638 adding manifests
1637 adding manifests
1639 adding file changes
1638 adding file changes
General Comments 0
You need to be logged in to leave comments. Login now