osx - How to submit nib files to perforce that were previously added? -
recently added .bundle file had several .nib files in perforce. i'm new using p4 on mac didn't think of , submitted fine.
i tried check out , edit bundle (basically replace previous version new one) , when try check in error -
read: /devdir/resources.bundle/createaccount.nib: directory
submit aborted -- fix problems use 'p4 submit -c 82488'. file(s) not transferred client.
i don't understand why let me add in first place if case aside i'm not sure now. files sitting in limbo state in pending change list.
is there way force submit them or delete them (i readd whole bundle in case)? or other suggestions..
thanks
in os x, .nib
, .bundle
"files" both directories extensions in names. such, in perforce, need add/edit contents, not items themselves.
for example:
p4 reconcile /devdir/resources.bundle/createaccount.nib/...
or
p4 edit /devdir/resrources.bundle/createaccount.nib/... p4 submit /devdir/resrources.bundle/createaccount.nib/...
if you're editing inside of xcode
, or external editor (or getting updated files else), i'd suggest using p4 reconcile
let perforce determine of contents need updated.
generally, in os x , ios development isn't necessary since not have .nib
files these days (.xib
files, xml-based source .nib
files in modern xcode
development). however, if code third party, have already-compiled resources.
Comments
Post a Comment