... | ... | @@ -13,16 +13,8 @@ Running OpenWalnut |
|
|
Source Code Management
|
|
|
----------------------
|
|
|
|
|
|
**Q.:** When checking out the source code with Mercurial, it says: `abort: requirement 'fncache' not supported!`
|
|
|
**A.:** You are using a very old mercurial version (< 1.1) and you cannot clone. The reason is described [here](http://mercurial.selenic.com/wiki/fncacheRepoFormat). Please upgrade to a newer version of [Mercurial](http://mercurial.selenic.com/).
|
|
|
|
|
|
**Q.:** When checking out the source code with Mercurial, it says: `abort: requirement 'dotencode' not supported!`
|
|
|
**A.:** You are using an old mercurial version (< 1.7) and you cannot clone. The reason is described [here](http://mercurial.selenic.com/wiki/RequiresFile#Older_Mercurial_versions). Please upgrade to a newer version of [Mercurial](http://mercurial.selenic.com/).
|
|
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
|
|
**Q.:** How do I get all files a user has ever touched and is in current revision?
|
|
|
**A.:** This will only work if the environment varibale USERNAME is present and you're not on Windows and it will not follow across file renamings:
|
|
|
**A.:** This will only work if the environment variable USERNAME is present and your still have a mercurial repository and you're not on Windows and it will not follow across file renamings:
|
|
|
|
|
|
for i in `LANG=C hg log -v -u $USERNAME | grep "^files:" | awk '{$1 =""; print }' | tr " " "\n" | sort | uniq | tr "\n" " "`; do find $i; done 2>/dev/null
|
|
|
|
... | ... | |