For branching I from a certain CL and have it as a changelist I realized that Perforce uses the copy keyword. I'm tryin to use the same keyword but getting an error saying that the options are invalid. Following is my code:
result = self.p4.run("copy","-c" + change_List,"-F", Path_1+"/...@"+ CL, Path_2+"/...")
am I doing something wrong? Can anyone explain to me what the wrong part of my code is?
See the usage info for
p4 copy:There is no form of the command that takes multiple file arguments and a
-Fflag. The-Fflag is only applicable if you're using streams, since its purpose is to allow you to override the defined "flow" of the two streams.