I have a perforce client that maps multiple end-to-end paths to my local client. These constant paths are for libraries and the main line of code.
How to use git -p4 to install a clone of the entire client in a separate directory?
From what I see, git -p4 can only clone specific depot paths. I would like to clone the entire client: suppose my perforce client is test_client. I'd like to do:
cd git_area
cp ../perforce/test_client/.perforce .
git-p4 clone
or something like that that pulls all directories into this separate git directory.
source
share