From 5d890e75bda0a0d9e0330c28540426f711817a36 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Tue, 18 Mar 2025 14:57:24 +0100 Subject: [PATCH 1/2] ReadMe: Add git-lfs to build instructions When not having git-lfs installed git clone fails. --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5be93fd5bab..1dde5174f5e 100644 --- a/README.md +++ b/README.md @@ -34,19 +34,26 @@ We use Ruby to manage the third party dependencies and other tools and automation. -2. Clone project in the folder of your preference +3. Ensure you have [git-lfs]([url](https://git-lfs.com/)) installed. + + You can install it via homebrew or visit [git-lfs]([url](https://git-lfs.com/)) for other installation methods. + ```bash + brew install git-lfs + ``` + +4. Clone project in the folder of your preference ```bash git clone https://github.com/woocommerce/woocommerce-ios.git ```` -3. Enter the project directory +5. Enter the project directory ```bash cd woocommerce-ios ``` -4. Install the third party dependencies and tools required to run the project. +6. Install the third party dependencies and tools required to run the project. ```bash @@ -55,7 +62,7 @@ This command installs the required tools like [CocoaPods](https://cocoapods.org/). And then it installs the iOS project dependencies using CocoaPods. -5. Open the project by double clicking on `WooCommerce.xcworkspace` file, or launching Xcode and choose File > Open and browse to `WooCommerce.xcworkspace` +7. Open the project by double clicking on `WooCommerce.xcworkspace` file, or launching Xcode and choose File > Open and browse to `WooCommerce.xcworkspace` ### Credentials for External Contributors From 6abe592e678d1c1adef72c1f7424f01dbd5ba638 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Tue, 18 Mar 2025 15:00:01 +0100 Subject: [PATCH 2/2] minor fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1dde5174f5e..54aade68e31 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ We use Ruby to manage the third party dependencies and other tools and automation. -3. Ensure you have [git-lfs]([url](https://git-lfs.com/)) installed. +3. Ensure you have [git-lfs](https://git-lfs.com/) installed. - You can install it via homebrew or visit [git-lfs]([url](https://git-lfs.com/)) for other installation methods. + You can install it via homebrew or visit [git-lfs](https://git-lfs.com/)) for other installation methods. ```bash brew install git-lfs ```