On 2005-05-23, Philipp Kern <[EMAIL PROTECTED]> wrote: > On 23.05.2005, at 01:28, Tomislav Filip?i? wrote: >> How can I get a list of files/directories in the current directory >> that are >> not under darcs version control? > > Try "darcs whatsnew -ls".
But be careful: Missing from this list will be all the files darcs thinks are "boring". The files that /are/ managed by darcs are found with: find _darcs/current -type f | sort -u >files_managed_.txt Then then compare them with the current directory: find . -type f | sort -u >all_files.txt diff files_managed.txt all_files.txt I recall there being a 'wish' filed about an easy command to list the managed or unmanaged files, but I can't find it now. You may wish to add that yourself at http://bugs.darcs.net/ Mark -- http://mark.stosberg.com/ _______________________________________________ darcs-users mailing list [email protected] http://www.abridgegame.org/mailman/listinfo/darcs-users
