Skip to content

Commit

Permalink
Adding corresponding documentation to new download makefile from git …
Browse files Browse the repository at this point in the history
…repository feature
  • Loading branch information
pmatias committed Dec 24, 2014
1 parent 4edefb4 commit 0bace5d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/make.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ projects. Additionally, they may specify a destination:
### Includes

An array of makefiles to include. Each include may be a local relative path
to the includer makefile directory or a direct URL to the makefile. Includes
to the include makefile directory, a direct URL to the makefile, or from a git repository. Includes
are appended in order with the source makefile appended last, allowing latter
makefiles to override the keys/values of former makefiles.

Expand All @@ -322,6 +322,13 @@ makefiles to override the keys/values of former makefiles.
- "../example_relative/example_relative.make"
# A remote-hosted file.
- "http://www.example.com/remote.make"
# A file on a git repository.
makefile: "example_dir/example.make"
download:
type: "git"
url: "git@github.com:organisation/repository.git"
# Branch could be tag or revision, it relays on the standard drush git download feature.
branch: "7.x"

### Defaults

Expand Down

0 comments on commit 0bace5d

Please sign in to comment.