I know that if I need to clone a perforce an existing p4 repository using command
git p4 clone //depot/path/project
But what if I want to multiple p4 paths into one git repo?
say I have the following structure
//depot---/Path1----/APath/...
| |
| |
| --/BPath/...
|
|
---/Path2----/CPath/...
|
|
---/Path3
I only want to clone files under //depot/Path1/APath/ and //depot/Path2/CPath/ in my local directory ~/Desktop/mylocalRepo/ how to do it?