DVCS
Mercurial Repository
Location
https://dvcs.w3.org/hg/text-tracks/
Pull Copy
Edit config file in ~/.hgrc :
[ui] username = Firstname Lastname <me@domain> verbose = True [auth] w3c.prefix = https://dvcs.w3.org/hg/text-tracks/ w3c.username = my_w3c_account w3c.password = my_w3c_passwd
Checkout:
hg clone https://dvcs.w3.org/hg/text-tracks/
Editing
Pulling previous changes:
hg update
Create new file:
hg add [file]
Commit a new change:
hg commit -m "Adding a README file" README
Committing/Pushing changes:
hg push