-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathjosh-sync.example.toml
More file actions
30 lines (27 loc) · 1.27 KB
/
josh-sync.example.toml
File metadata and controls
30 lines (27 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# GitHub org of the repository (optional, `rust-lang` is the default)
#org = "rust-lang"
# Name of the repository
repo = "stdarch"
# Path where the subtree is located in rust-lang/rust
path = "library/stdarch"
# Optionally, you can specify the complete Josh filter for complex cases
# Note that this option is mutually exclusive with `path`
#filter = ...
# Optionally, you can specify a set of commands executed after a successful pull.
# If the executed command changes the local git state (performs some modifications to files that
# were already tracked), then a new commit with the given message will be created.
#[[post-pull]]
#cmd = ["cargo", "fmt"]
#commit-message = "reformat"
# Optionally, you can specify a subtree filter.
# This will be applied to the local `HEAD` during the round-trip check.
#
# By default, the round-trip check expects the local repo to be a perfect 1:1 mirror
# of the upstream tree. Leave this empty if that is your intent.
#
# If you are not doing a 1:1 mirror, set this to a filter that transforms your local
# `HEAD` into a tree that exactly matches the upstream tree after the `filter`
# is applied.
# E.g., if the `filter` is ":/compiler/rustc_public:prefix=rustc_public",
# the `subtree-filter` should be:
#subtree-filter = ":/rustc_public:prefix=rustc_public"