Fuchsia > Guides -- Get Fuchsia source code seems to imply that git is involved in the downloading of the source for Fuchsia OS:
$ sudo apt-get install build-essential curl git python unzip
The actual commands for the download do not use git
explicitly:
curl -s "https://fuchsia.googlesource.com/fuchsia/+/master/scripts/bootstrap?format=TEXT" | base64 --decode | bash
Fuchsia > Guides -- Contribute changes show a git
command as the first step in the process of making a coding change to Fuchsia OS.
git checkout -b <branch_name>
What is the relationship of getting the source for a build from fuchsia.dev and the process to submit a change to fuchsia.googlesource.com?
For example, does one need to do these as two separate actions to different places or can one just jump in the middle of the downloaded sources from fuchsia.dev
for the git
commands as described in fuchsia.googlesource.com
?