AccuRev: how do you list the managed files? -
i need see files have been added or removed between 2 streams. obvious way "git lsfiles" in each stream. except not git , not see analogous command. today:
for f in $(find * -type f);do accurev stat "$f" done | \ fgrep -v '(external)' | \ awk '{print $1}' > .list
if there better way, should clear , easy find here:
http://www.accurev.com/download/docs/5.7.0_books/accurev_5_7_user_cli.pdf
but not. help? thank you.
if want see difference between 2 streams, run following command: accurev diff -a -v "stream1" -v "stream2"
Comments
Post a Comment