Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,50 @@ Each release on the [releases page](https://github.com/dfetch-org/dfetch/release
- macOS `.pkg`
- Windows `.msi`

## Example manifest

```yaml
manifest:
version: 0.0

remotes: # declare common sources in one place
- name: github
url-base: https://github.com/ # Allow git modules
default: true # Set it as default

- name: sourceforge
url-base: svn://svn.code.sf.net/p/

projects:

- name: cpputest-git-tag
dst: Tests/cpputest-git-tag
url: https://github.com/cpputest/cpputest.git # Use external git directly
tag: v3.4 # revision can also be a tag

- name: tortoise-svn-branch-rev
dst: Tests/tortoise-svn-branch-rev/
remote: sourceforge
branch: 1.10.x
revision: '28553'
src: src/*
vcs: svn
repo-path: tortoisesvn/code

- name: tortoise-svn-tag
dst: Tests/tortoise-svn-tag/
remote: sourceforge
tag: version-1.13.1
src: src/*.txt
vcs: svn
repo-path: tortoisesvn/code

- name: cpputest-git-src
dst: Tests/cpputest-git-src
repo-path: cpputest/cpputest.git
src: src
```

## Github Action

You can use DFetch in your Github Actions workflow to check your dependencies.
Expand Down
2 changes: 2 additions & 0 deletions doc/vendoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,8 @@ Here are some links to example projects using *Dfetch*.
- `Dfetch`: https://github.com/dfetch-org/dfetch
- `ModbusScope`: https://github.com/ModbusScope/ModbusScope
- `Red Jackets Jazzband`: https://github.com/red-jackets-jazzband/website
- `Example Yocto`: https://github.com/dfetch-org/example-yocto
- `Example Zephyr`: https://github.com/dfetch-org/example-zephyr

Internally we use *Dfetch* for various projects and uses.

Expand Down
Loading