quickstart-ide-standard-sourcecode-acquire.md 2.3 KB
Newer Older
D
duangavin123 已提交
1 2 3
# 获取源码


L
liyan 已提交
4
在Ubuntu环境下通过以下步骤获取OpenHarmony源码。
D
duangavin123 已提交
5 6


D
duangavin123 已提交
7 8 9 10 11 12
## 前提条件

1. 注册码云gitee帐号。

2. 注册码云SSH公钥,请参考[码云帮助中心](https://gitee.com/help/articles/4191)

D
duangavin123 已提交
13 14 15
3. 安装git客户端和git-lfs。(上述工具已在搭建环境章节安装。如已安装,请忽略)
     
   更新软件源:
D
duangavin123 已提交
16 17 18 19 20
     
   ```
   sudo apt-get update
   ```

D
duangavin123 已提交
21
   通过以下命令安装:
D
duangavin123 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34
     
   ```
   sudo apt-get install git git-lfs
   ```

4. 配置用户信息。
     
   ```
   git config --global user.name "yourname"
   git config --global user.email "your-email-address"
   git config --global credential.helper store
   ```

L
liyan 已提交
35 36 37 38
5. 执行如下命令安装码云repo工具。

   下述命令中的安装路径以"~/bin"为例,请用户自行创建所需目录。
  
D
duangavin123 已提交
39
   ```
L
liyan 已提交
40 41 42
   mkdir ~/bin
   curl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 -o ~/bin/repo 
   chmod a+x ~/bin/repo
D
duangavin123 已提交
43 44 45
   pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
   ```

L
liyan 已提交
46 47 48 49 50 51 52 53
6. 将repo添加到环境变量。

   ```
   vim ~/.bashrc               # 编辑环境变量
   export PATH=~/bin:$PATH     # 在环境变量的最后添加一行repo路径信息
   source ~/.bashrc            # 应用环境变量
   ```

D
duangavin123 已提交
54

L
liyan 已提交
55
## 获取方式
D
duangavin123 已提交
56 57

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
D
duangavin123 已提交
58
>
D
duangavin123 已提交
59 60 61
> Master主干为开发分支,开发者可通过Master主干获取最新特性。发布分支代码相对比较稳定,开发者可基于发布分支代码进行商用功能开发。

- **OpenHarmony主干代码获取**
D
duangavin123 已提交
62

D
duangavin123 已提交
63
  方式一(推荐):通过repo + ssh下载(需注册公钥,请参考[码云帮助中心](https://gitee.com/help/articles/4191))。
D
duangavin123 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    
  ```
  repo init -u git@gitee.com:openharmony/manifest.git -b master --no-repo-verify
  repo sync -c
  repo forall -c 'git lfs pull'
  ```

  方式二:通过repo + https下载。

    
  ```
  repo init -u https://gitee.com/openharmony/manifest.git -b master --no-repo-verify
  repo sync -c
  repo forall -c 'git lfs pull'
  ```

- **OpenHarmony发布分支代码获取**
D
duangavin123 已提交
81

D
duangavin123 已提交
82 83 84
  OpenHarmony各个版本发布分支的源码获取方式请参考[Release-Notes](../../release-notes/Readme.md)


D
duangavin123 已提交
85
### 执行prebuilts
D
duangavin123 已提交
86 87 88 89 90 91

  在源码根目录下执行prebuilts脚本,安装编译器及二进制工具。
  
```
bash build/prebuilts_download.sh
```