Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
2.3k views
by Contributing Tester (99 points)
I am getting this error while trying to pull or push my Mercurial repository.

 

This repository uses the largefiles extension.

Please enable it in your Mercurial config file

1 Answer

0 like 0 dislike
by Master (1.2k points)
In TortoiseHg Workbench select menu File >Settings

on the tab 'username global settings' click 'Edit file' button

and change all text inside opened file to next:

# Generated by TortoiseHg settings dialog

[ui]

username =

[extensions]

largefiles =

[http_proxy]

host =

no =

user =

passwd =

[extensions]

strip =

[auth]

foo.prefix = hg-vm01

foo.username =

foo.password =

foo.schemes = http https

foo2.prefix = hg

foo2.username =

foo2.password =

foo2.schemes = http https

change username to your username

and also add your short username into the fields foo.username and foo2.username

 

Hope that helps!
...