-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# May be set to a list of URLs described as Python regular expressions (using re.fullmatch()) | ||
# where it is permitted to autorun scripts from the pulled project as a pre-initialisation | ||
# step. | ||
# | ||
# WARNING: Enable this only if you understand and accept the risks of AUTORUN.INF. | ||
# ---- | ||
# c.NbGitPuller.autorun_allow = [ | ||
# r'https://github\.com/org/name\.git', | ||
# r'https://github\.com/org-two/name-two\.git' | ||
# ] | ||
# ---- | ||
# | ||
# To allow all sources (*not* recommended) use: | ||
# ---- | ||
# c.NbGitPuller.autorun_allow = True | ||
# ---- | ||
# | ||
# The default is 'False' which means the autorun functionality is completely disabled | ||
#c.NbGitPuller.autorun_allow = False | ||
|
||
# List of scripts to search for when attempting to autorun. The first match will | ||
# be run with a single argument of 'init' or 'update' depending on what nbgitpuller | ||
# is doing. | ||
# ---- | ||
# c.NbGitPuller.autorun_script = [ | ||
# '.nbgitpuller.script', | ||
# '.different.script' | ||
# ] | ||
# ---- | ||
# | ||
# The 'script' must be executable and when checked out on a 'exec' (ie. not a 'noexec') mountpoint | ||
# | ||
# The default is the empty list. | ||
#c.NbGitPuller.autorun_script = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters