-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.fork-config.example
More file actions
24 lines (17 loc) · 998 Bytes
/
.fork-config.example
File metadata and controls
24 lines (17 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file provides shell-script variables for the `forked-repos` script
# your github username
GITHUB_USERNAME="awesomecontributor"
# if you fork the helios repos with this prefix added, the script will find them.
# if you fork without the prefix added, the script will still find them.
REPO_PREPEND="helios-"
# name of the git remote for your fork. We'll add it with 'git origin add $FORK_ORIGIN_NAME'
# set to the empty string to skip fork setup.
FORK_ORIGIN_NAME="origin"
# When this setting is enabled, the git 'checkout.defaultRemote' option is set in each repo,
# ... so`git switch` chooses your fork's named branches by default.
# During initial clone, this also has the effect of tracking your FORK_ORIGIN_NAME's "main" branch.
GIT_DEFAULT_REMOTE="$FORK_ORIGIN_NAME"
# the command that's run in each directory, when changes need to be committed
COMMIT_TOOL="bash --noprofile"
# name used for git remote indicating the upstream HeliosLang/* repos
UPSTREAM_REMOTE_NAME="upstream"