I never remember how to recursively add files to perforce. This page describes a command to do it.
On the Linux/Mac OS X p4 command line tool this is the command:
find . -type f -print | p4 -x - add
As a remote worker or someone who frequently collaborates with others on different networks, you're likely familiar with the challenges...
Cool, I didn't know about the -x. I find myself doing this often at work:
ReplyDeletefind . -type f | xargs p4 add
on windows
ReplyDeletedir /s/b *.* | p4 -x - add