Reputation: 11640
I have a P4CONFIG file that sets up necessary environment.
Then I p4 add /path/to/myfile.ext
, which gives me
//Depot/relative/path/to/myfile.ext - currently opened for add
But when opening my p4v of the same workspace, the file isn't in the default changelist. I've also tried
p4 add -f /path/to/...
And the result is the same.
What am I missing?
Upvotes: 0
Views: 1310
Reputation: 71517
What am I missing?
There are a couple of possibilities. The two commands to run to figure it out would be:
p4 info
p4 opened
The things you'd be trying to figure out with those commands are:
Upvotes: 3