How do you zip a Xcode project?

前端 未结 4 1791
遥遥无期
遥遥无期 2020-12-21 18:25

Tired sending my friend an XCODE project , but files are missing? No idea why?

Any ideas

4条回答
  •  暖寄归人
    2020-12-21 18:54

    Assuming you understand how to use the Terminal.app:

    In the directory above your project:

    tar cvzf .tar.gz

    This will create a .tar.gz file for your project, which is compressed archive, similar to .zip

    Your friend can then run tar xvzf .tar.gz to expand to a directory on their computer.

    If you run man tar from the command line, this will explain what all the command line arguments for tar do.

提交回复
热议问题