From bfca57ffeed4324fc2d4b4dc3cabed52dc543881 Mon Sep 17 00:00:00 2001 From: marc <61566036+marc-48k@users.noreply.github.com> Date: Fri, 15 Sep 2023 19:10:01 +1000 Subject: [PATCH] xcodes, xcodes-runtimes: add page (#10718) * xcodes, xcodes-runtimes: add page --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/osx/xcodes-runtimes.md | 16 ++++++++++++++++ pages/osx/xcodes.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 pages/osx/xcodes-runtimes.md create mode 100644 pages/osx/xcodes.md 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}}`