You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating "Getting started" with additional step needed to install git lfs
Previously the last instruction on installing Git just said 'brew install git-lfs', but an additional step is needed to finish installation (running 'git lfs install' or 'git lfs install --system). This is a really easy step to miss (the instruction to do it is hidden in the output of 'brew install git-lfs'), and results in all sorts of unexpected errors popping up later (i.e. AppIcon images not working properly).
Copy file name to clipboardExpand all lines: articles/spatial-anchors/quickstarts/get-started-ios.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,10 @@ You'll learn how to:
28
28
To complete this quickstart, make sure you have:
29
29
30
30
- A developer enabled macOS machine with the latest version of <ahref="https://geo.itunes.apple.com/us/app/xcode/id497799835?mt=12"target="_blank">Xcode</a> and <ahref="https://cocoapods.org"target="_blank">CocoaPods</a> installed.
31
-
- Git installed via HomeBrew. Enter the following command into a single line of the Terminal: `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`. Then, run `brew install git` and `brew install git-lfs`.
31
+
- Git installed via HomeBrew:
32
+
- Enter the following command into a single line of the Terminal: `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`.
33
+
- Then, run `brew install git` and `brew install git-lfs`.
34
+
- Lastly, update your git config with `git lfs install` (for the current user) or `git lfs install --system` (for the entire system)
32
35
- A developer enabled <ahref="https://developer.apple.com/documentation/arkit/verifying_device_support_and_user_permission"target="_blank">ARKit compatible</a> iOS device.
0 commit comments