Find file in Perforce which are not checked in

From EggeWiki
Revision as of 15:35, 27 September 2010 by Brianegge (talk | contribs) (Created page with 'Most version control system offer an easy means of identify which files exist on disk, but aren't controlled by the VCS. In p4, I use this command: <geshi> find . -type f | xar…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Most version control system offer an easy means of identify which files exist on disk, but aren't controlled by the VCS. In p4, I use this command:

<geshi> find . -type f | xargs p4 add -n 2>&1 | grep -v existing </geshi>