Fuchsia > Guides -- Get Fuchsia source code似乎暗示 git 参与了 Fuchsia OS 源代码的下载:
$ sudo apt-get install build-essential curl git python unzip
下载的实际命令没有git
明确使用:
curl -s "https://fuchsia.googlesource.com/fuchsia/+/master/scripts/bootstrap?format=TEXT" | base64 --decode | bash
Fuchsia > Guides -- Contribute changes显示一个git
命令,作为对 Fuchsia OS 进行编码更改过程的第一步。
git checkout -b <branch_name>
从fuchsia.dev获取构建源和向fuchsia.googlesource.com提交更改的过程是什么关系?
例如,是否需要将这些作为两个单独的操作执行到不同的位置,或者是否可以只在下载的源代码中间跳转到fuchsia.dev
命令git
,如中所述fuchsia.googlesource.com
?