Xcode repository indicators meanings

前端 未结 5 520
终归单人心
终归单人心 2020-12-15 09:14

I wonder what these shortcuts mean and since I already can figure out that \"shortcut\" is not the right word for it, I don\'t even know what to google so I\'ll just strike

5条回答
  •  再見小時候
    2020-12-15 09:37

    There are Xcode Source Control management codes, they provide the file status as below:

    • ' ' (Blank) Unmodified
    • 'M' Locally modified
    • 'U' Updated in repository
    • 'A' Locally added
    • 'D' Locally deleted
    • 'I' Ignored
    • 'R' Replaced in the repository
    • '-' The contents of the folder have mixed status; display the contents to see individual status
    • '?' Not under source control

    Status codes From section Store and Track Changes with Source Control of Apple's Xcode documantation.

提交回复
热议问题