Look at the listing: ---- git init depot cd depot git config git-p4.branchList main:branch1 git p4 clone --detect-branches //depot@all . ---- git p4 clone is used with the last dot. It is easy to miss the dot, so I offer to use git p4 sync instead. It has the same syntax, except does not need to point the directory, because works in the current one. The result would be like: ---- git init depot cd depot git config git-p4.branchList main:branch1 git p4 sync --detect-branches //depot@all ---- Signed-off-by: Andrew Yefanov <1134togo@xxxxxxxxx> --- Documentation/git-p4.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-p4.txt b/Documentation/git-p4.txt index 7436c64a9..0044766bf 100644 --- a/Documentation/git-p4.txt +++ b/Documentation/git-p4.txt @@ -434,7 +434,7 @@ occur with: git init depot cd depot git config git-p4.branchList main:branch1 -git p4 clone --detect-branches //depot@all . +git p4 sync --detect-branches //depot@all ---- -- 2.20.1 (Apple Git-117)