Skip to content

Commit e0d8832

Browse files
committed
Add directions on how to handle issues when updating using hg.
1 parent 1d9f7b2 commit e0d8832

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

website/README.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,25 @@ http://web.archive.org/web/20140618231150/http://sourceforge.net/apps/trac/sourc
5555
# (the warning about "Not trusting file ... " can be ignored
5656
# for now https://sourceforge.net/p/forge/site-support/8217/)
5757
hg pull -u --cwd ${project_home}/src/roundup
58+
# see below if this fails with: not trusting file
59+
# /home/project-web/roundup/src/roundup/.hg/hgrc from untrusted
60+
# user 110231, group 48
5861

5962
# read up on other people changes and add yours
6063
cd ${project_home}
6164
vim logbuch.txt
6265

66+
If you get a "not trusting" error the problem is that the .hg files in
67+
use are not owned by you and hg won;t use them. Add this to your
68+
~/.hgrc file (create file if needed)
69+
70+
[trusted]
71+
groups=48
72+
users=110231
73+
74+
if the uid/gid changes you may have to change the values.
75+
See: https://www.mercurial-scm.org/wiki/Trust for details
76+
6377

6478
updating wiki.roundup-tracker.org
6579
---------------------------------

0 commit comments

Comments
 (0)