Skip to content

Commit 04fd35f

Browse files
committed
Replace 'git clone -b release/0.6' with 'git clone'
' '
1 parent 38306a8 commit 04fd35f

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To build the documentation locally:
4040
1. Clone the ExecuTorch repo to your machine.
4141

4242
```bash
43-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
43+
git clone https://github.com/pytorch/executorch.git && cd executorch
4444
```
4545

4646
1. If you don't have it already, start either a Python virtual envitonment:

docs/source/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ ExecuTorch provides C++ APIs, which can be used to target embedded or mobile dev
151151
CMake is the preferred build system for the ExecuTorch C++ runtime. To use with CMake, clone the ExecuTorch repository as a subdirectory of your project, and use CMake's `add_subdirectory("executorch")` to include the dependency. The `executorch` target, as well as kernel and backend targets will be made available to link against. The runtime can also be built standalone to support diverse toolchains. See [Using ExecuTorch with C++](using-executorch-cpp.md) for a detailed description of build integration, targets, and cross compilation.
152152

153153
```
154-
git clone -b release/0.6 https://github.com/pytorch/executorch.git
154+
git clone https://github.com/pytorch/executorch.git
155155
```
156156
```python
157157
# CMakeLists.txt

docs/source/llm/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ cd et-nanogpt
4545
4646
# Clone the ExecuTorch repository.
4747
mkdir third-party
48-
git clone -b release/0.6 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
48+
git clone https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
4949
5050
# Create either a Python virtual environment:
5151
python3 -m venv .venv && source .venv/bin/activate && pip install --upgrade pip
@@ -79,7 +79,7 @@ pyenv virtualenv 3.10 executorch
7979
pyenv activate executorch
8080
8181
# Clone the ExecuTorch repository.
82-
git clone -b release/0.6 https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
82+
git clone https://github.com/pytorch/executorch.git third-party/executorch && cd third-party/executorch
8383
8484
# Install requirements.
8585
PYTHON_EXECUTABLE=python ./install_executorch.sh

docs/source/using-executorch-building-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ portability details.
4040

4141
```bash
4242
# Clone the ExecuTorch repo from GitHub
43-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
43+
git clone https://github.com/pytorch/executorch.git && cd executorch
4444
```
4545

4646
### Create a Virtual Environment

docs/source/using-executorch-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ xcode-select --install
9797
2. Clone ExecuTorch:
9898

9999
```bash
100-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
100+
git clone https://github.com/pytorch/executorch.git && cd executorch
101101
```
102102

103103
3. Set up [Python](https://www.python.org/downloads/macos/) 3.10+ and activate a virtual environment:

examples/demo-apps/android/LlamaDemo/docs/delegates/mediatek_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2424
Checkout ExecuTorch repo and sync submodules
2525

2626
```
27-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
27+
git clone https://github.com/pytorch/executorch.git && cd executorch
2828
```
2929

3030
Create either a Python virtual environment:

examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2222
Checkout ExecuTorch repo and sync submodules
2323

2424
```
25-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
25+
git clone https://github.com/pytorch/executorch.git && cd executorch
2626
```
2727

2828
Create either a Python virtual environment:

examples/demo-apps/android/LlamaDemo/docs/delegates/xnnpack_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
2424
Checkout ExecuTorch repo and sync submodules
2525

2626
```
27-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
27+
git clone https://github.com/pytorch/executorch.git && cd executorch
2828
```
2929

3030
Create either a Python virtual environment:

examples/demo-apps/apple_ios/ExecuTorchDemo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Follow the [Setting Up ExecuTorch](https://pytorch.org/executorch/stable/getting
4444
tutorial to configure the basic environment:
4545

4646
```bash
47-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
47+
git clone https://github.com/pytorch/executorch.git && cd executorch
4848

4949
python3 -m venv .venv && source .venv/bin/activate
5050

examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this section, we will need to set up the ExecuTorch repo first with Conda env
1717
Checkout ExecuTorch repo and sync submodules
1818

1919
```
20-
git clone -b release/0.6 https://github.com/pytorch/executorch.git && cd executorch
20+
git clone https://github.com/pytorch/executorch.git && cd executorch
2121
```
2222

2323
Create either a Python virtual environment:

0 commit comments

Comments
 (0)