Mercurial: Globally Ignore Files
You can add a path to a global or per-user ignore file in the [ui] section of your global/user hgrc or Mercurial.ini: [ui] ignore = ~/.hgignore On Windows: [ui] ignore = %USERPROFILE%\.hgignore
You can add a path to a global or per-user ignore file in the [ui] section of your global/user hgrc or Mercurial.ini: [ui] ignore = ~/.hgignore On Windows: [ui] ignore = %USERPROFILE%\.hgignore
hg paths gives the relationship between each path name and its url. > hg paths default = ssh://hg@example.org/repo local = /local/path/to/repo hg paths <name> gives the url for the name. > hg paths default ssh://hg@example.org/repo > hg paths local /local/path/to/repo BTW, to get just the path names: > hg paths -q default local and hg … Read more
You can make an auth section in your .hgrc or Mercurial.ini file, like so: [auth] bb.prefix = https://bitbucket.org/repo/path bb.username = foo bb.password = foo_passwd The ‘bb’ part is an arbitrary identifier and is used to match prefix with username and password – handy for managing different username/password combos with different sites (prefix) You can also … Read more