-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add git init command before downloading code
- Loading branch information
1 parent
055b549
commit 3804dbc
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ openvela 源码位于由 [GitHub](https://github.com/open-Vela) 或 [Gitee](http | |
- Github(需注册公钥,请参考[Github文档](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)): | ||
|
||
``` bash | ||
git init | ||
# Install Git LFS (Large File Storage) for managing large files | ||
sudo apt install git-lfs | ||
git lfs install | ||
|
@@ -29,6 +30,7 @@ openvela 源码位于由 [GitHub](https://github.com/open-Vela) 或 [Gitee](http | |
- Gitee(需注册公钥,请参考[码云文档](https://gitee.com/help/articles/4191)): | ||
|
||
```bash | ||
git init | ||
# Install Git LFS (Large File Storage) for managing large files | ||
sudo apt install git-lfs | ||
git lfs install | ||
|
@@ -37,7 +39,7 @@ openvela 源码位于由 [GitHub](https://github.com/open-Vela) 或 [Gitee](http | |
repo init --partial-clone -u [email protected]:open-vela/manifests.git -b dev -m openvela.xml --git-lfs | ||
``` | ||
|
||
## 下载 openvela 源码 | ||
## 下载源码 | ||
|
||
运行如下命令下载 openvela 源码树至工作目录: | ||
|
||
|