I had a problem with bzr adding a directory and its sub-folders. If I add dir "PSMTabBarControl2", then I see the following status, however bzr refuses to add certain directories, those listed under "unknown".
prompt> bzr st
added:
CONTENT/PSMTabBarControl2/
CONTENT/PSMTabBarControl2/English.lproj/
CONTENT/PSMTabBarControl2/English.lproj/InfoPlist.strings
CONTENT/PSMTabBarControl2/English.lproj/PSMTabBarControlInspector.xib
CONTENT/PSMTabBarControl2/English.lproj/PSMTabBarControlLibrary.nib/
CONTENT/PSMTabBarControl2/English.lproj/PSMTabBarControlLibrary.nib/designable.nib
CONTENT/PSMTabBarControl2/English.lproj/PSMTabBarControlLibrary.nib/keyedobjects.nib
CONTENT/PSMTabBarControl2/Info.plist
CONTENT/PSMTabBarControl2/PSMTabBarControl-Info.plist
CONTENT/PSMTabBarControl2/PSMTabBarControl.xcodeproj/
CONTENT/PSMTabBarControl2/PSMTabBarControl.xcodeproj/project.pbxproj
CONTENT/PSMTabBarControl2/PSMTabBarControlView.classdescription
CONTENT/PSMTabBarControl2/PSMTabBarControl_Prefix.pch
CONTENT/PSMTabBarControl2/version.plist
modified:
.bzrignore
CONTENT/TabInterface/OPCommanderPanel/OPCommanderPanelView.m
unknown:
CONTENT/PSMTabBarControl/
CONTENT/PSMTabBarControl2/documentation/
CONTENT/PSMTabBarControl2/images/
CONTENT/PSMTabBarControl2/source/
prompt>
How to add things to an unknown section?
FYI: these dir are not in my bzrignore and they don't have weird permissions.
UPDATE: "bzr add -v" does not indicate why these channels are rejected.
prompt> bzr add -v
ignored CONTENT/PSMTabBarControl2/PSMTabBarControl.xcodeproj/neoneye.mode1v3 matching "*.mode1v3"
ignored CONTENT/TabInterface/PSMTabBarControl/PSMTabBarControl.xcodeproj/neoneye.mode1v3 matching "*.mode1v3"
ignored CONTENT/PSMTabBarControl2/PSMTabBarControl.xcodeproj/default.pbxuser matching "*.pbxuser"
ignored CONTENT/PSMTabBarControl2/PSMTabBarControl.xcodeproj/neoneye.pbxuser matching "*.pbxuser"
ignored CONTENT/TabInterface/PSMTabBarControl/PSMTabBarControl.xcodeproj/neoneye.pbxuser matching "*.pbxuser"
ignored CONTENT/TabInterface/PSMTabBarControl/PSMTabBarControl.xcodeproj/project.pbxproj.~1~ matching "*~"
ignored CONTENT/.DS_Store matching ".DS_Store"
ignored CONTENT/build matching "build"
ignored CONTENT/PSMTabBarControl2/build matching "build"
prompt>
UPDATE2: nothing happens if I try to add an unknown directory to the project. And if I try to commit, bzr says: "There are no changes to commit."
prompt> bzr add CONTENT/PSMTabBarControl2/documentation
prompt> bzr st
unknown:
CONTENT/PSMTabBarControl/
CONTENT/PSMTabBarControl2/documentation/
CONTENT/PSMTabBarControl2/images/
CONTENT/PSMTabBarControl2/source/
prompt>
UPDATE3: nothing is visible in the repository itself.
prompt> bzr check
Checking working tree at '/Users/neoneye/bzr/newcmd_app'.
Checking branch at 'file:///Users/neoneye/bzr/newcmd_app/'.
Checking repository at 'file:///Users/neoneye/bzr/newcmd_app/'.
checked repository <bzrlib.transport.local.LocalTransport url=file:
10 revisions
576 file-ids
checked branch file:
prompt>
UPDATE4: recursive copy and creating a new repository leads to exactly the same situation
prompt> cp -R newcmd_app ~/Desktop/xyz
prompt> cd ~/Desktop/xyz
prompt> rm -rf .bzr
prompt> bzr init .
prompt> bzr add .
prompt> bzr commit -m "import"
prompt> bzr st
unknown:
CONTENT/PSMTabBarControl/
CONTENT/PSMTabBarControl2/documentation/
CONTENT/PSMTabBarControl2/images/
CONTENT/PSMTabBarControl2/source/
prompt>
UPDATE5: ~/.bzr-log
0.327 skip control directory '.bzr'
0.661 bzr-svn: using Subversion 1.6.5 ()
, , .svn dirs. , .svn dirs, .
:.svn dirs . .svn dirs.
prompt> rm -rf `find . -type d -name .svn`
prompt>