1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

README.md: how to download a single example (#615)

This commit is contained in:
Noam Yorav-Raphael
2021-01-31 08:12:29 +02:00
committed by GitHub
parent 2f6767f95e
commit c8d7b3c104

View File

@@ -10,6 +10,21 @@ A collection of open source samples that illustrate best practices for
The easiest way to browse through the samples in this repo (as well as a few others!)
is the [visual samples index](https://flutter.github.io/samples).
## Tip: minimize download size
As this repository is quite big, you can use svn to download a single example.
For example:
```
svn co https://github.com/flutter/samples/trunk/provider_shopper
```
You can also use a shallow clone to download just the latest revision:
```
git clone --depth 1 https://github.com/flutter/samples.git
```
## Interested in contributing?
See the [contributor's guide](CONTRIBUTING.md)!