aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/user/download.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/user/download.md')
-rw-r--r--site/user/download.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/site/user/download.md b/site/user/download.md
index 75a53da0f8..bdedf7df9e 100644
--- a/site/user/download.md
+++ b/site/user/download.md
@@ -1,34 +1,40 @@
How to download Skia
====================
-Install depot_tools and Git
+Install `depot_tools` and Git
---------------------------
Follow the instructions on [Installing Chromium's
depot_tools](http://www.chromium.org/developers/how-tos/install-depot-tools)
-to download depot_tools (which includes gclient, git-cl, and Ninja).
+to download `depot_tools` (which includes gclient, git-cl, and Ninja).
+Below is a summary of the necessary steps.
<!--?prettify lang=sh?-->
git clone 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
export PATH="${PWD}/depot_tools:${PATH}"
-depot_tools will also install Git on your system, if it wasn't installed
+`depot_tools` will also install Git on your system, if it wasn't installed
already.
Clone the Skia repository
-------------------------
+Skia can either be cloned using `git` or the `fetch` tool that is
+installed with `depot_tools`.
+
<!--?prettify lang=sh?-->
git clone https://skia.googlesource.com/skia.git
+ # or
+ # fetch skia
cd skia
python tools/git-sync-deps
Getting started with Skia
-------------------------
-You probably now want to [build](./build) Skia.
+You will probably now want to [build](./build) Skia.
Changing and contributing to Skia
---------------------------------