• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# You can synchronize a remote package on which yours depends with git
2# to 'third_party' (or another directory).
3#
4# Here is an example using nlunit-test. Uncomment and adapt or
5# delete this, as needed. If you do not have any packages to
6# sychronize, then this file is unneeded and may be deleted from your
7# project.
8#
9# If you choose to use this, please also take a look at configure.ac,
10# Makefile.am, and third_party/Makefile.am and uncomment the appropriate
11# sections there.
12#
13# The 'pull' section is optional. The 'pull' section allows you to
14# optionally specify the 'method' key as 'clone' or 'submodule'
15# (defaulting to 'clone' when the key is not present). This selects
16# whether 'git clone' or 'git submodule' is used to pull down
17# repositories.
18#
19# While the 'branch' key is required, the 'commit' key is
20# optional. The 'commit' key allows you to specify a particular commit
21# hash or tag if you do not want HEAD of the specified branch.
22
23# [pull]
24#	method = clone
25#
26# [submodule "nlunit-test"]
27# 	path = third_party/nlunit-test/repo
28# 	url = https://github.com/nestlabs/nlunit-test.git
29# 	branch = master
30#	commit = 561a155bb7257e54198cf5496f74ed5bc41cf85f
31# 	update = none
32