From f4bdeb85340cfb98a26b190e9c5443a6f457fe74 Mon Sep 17 00:00:00 2001 From: usedhondacivic Date: Fri, 20 Sep 2024 12:18:43 -0400 Subject: [PATCH] Remove autocrlf from git clone command, superceeded by .gitattributes --- software_installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/software_installation.md b/software_installation.md index 348df15..d67866b 100644 --- a/software_installation.md +++ b/software_installation.md @@ -82,19 +82,19 @@ Start a new terminal (Terminal -> New Terminal) and run the following command to #### **Hardware Beta Testers** ```bash -git clone --recurse-submodules --config core.autocrlf=input git@github.com:empriselab/lrr-fa24-beta.git +git clone --recurse-submodules git@github.com:empriselab/lrr-fa24-beta.git ``` #### **ROS2: Humble (Recommended)** ```bash -git clone --recurse-submodules --config core.autocrlf=input git@github.com:little-red-rover/lrr-template-project.git +git clone --recurse-submodules git@github.com:little-red-rover/lrr-template-project.git ``` #### **ROS1: Noetic** ```bash -git clone --recurse-submodules --config core.autocrlf=input git@github.com:little-red-rover/lrr-template-project.git && cd lrr-template-project && checkout noetic +git clone --recurse-submodules git@github.com:little-red-rover/lrr-template-project.git && cd lrr-template-project && checkout noetic ```