diff --git a/pages/osx/xcodes-runtimes.md b/pages/osx/xcodes-runtimes.md new file mode 100644 index 000000000..8b50914f7 --- /dev/null +++ b/pages/osx/xcodes-runtimes.md @@ -0,0 +1,16 @@ +# xcodes runtimes + +> Manage Xcode Simulator runtimes. +> More information: . + +- Display all available Simulator runtimes: + +`xcodes runtimes --include-betas` + +- Download a Simulator runtime: + +`xcodes runtimes download {{runtime-name}}` + +- Download and install a Simulator runtime: + +`xcodes runtimes install {{runtime-name}}` diff --git a/pages/osx/xcodes.md b/pages/osx/xcodes.md new file mode 100644 index 000000000..7fd8c1f94 --- /dev/null +++ b/pages/osx/xcodes.md @@ -0,0 +1,29 @@ +# xcodes + +> Download, install and manage multiple Xcode versions. +> See also: `xcodes runtimes`. +> More information: . + +- List all installed Xcode versions: + +`xcodes installed` + +- List all available Xcode versions: + +`xcodes list` + +- Select an Xcode version by specifying a version number or a path: + +`xcodes select {{xcode-version|path/to/Xcode.app}}` + +- Download and install a specific Xcode version: + +`xcodes install {{xcode-version}}` + +- Install the latest Xcode release and select it: + +`xcodes install --latest --select` + +- Download a specific Xcode version archive to a given directory without installing it: + +`xcodes download {{xcode-version}} --directory {{path/to/directory}}`