Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref: improve add/import* to-cache/remote info and examples #2302

Merged
merged 32 commits into from
Mar 19, 2021
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3f1217e
guide: update Ext Data guide link to add to-cache/remote examples
jorgeorpinel Mar 13, 2021
bab95a9
ref: config options copy edits
jorgeorpinel Mar 14, 2021
69cbbb6
ref: destroy copy edit
jorgeorpinel Mar 14, 2021
a1e609e
Merge branch 'master' into jorge +
jorgeorpinel Mar 15, 2021
cd599c8
ref: fix mac config file locs
jorgeorpinel Mar 15, 2021
eb4af97
ref: small update to plots * --open
jorgeorpinel Mar 15, 2021
043db23
ref: clarify and correct info on add/import to-cache/remote strategies
jorgeorpinel Mar 15, 2021
fa82c89
ref: import-url vs import in terms of remote sync
jorgeorpinel Mar 15, 2021
5729f49
ref: roll back changes unrelated to get/import from this PR
jorgeorpinel Mar 15, 2021
c393212
ref: remove wrong info about import* to-cache
jorgeorpinel Mar 15, 2021
b020b4e
Update content/docs/command-reference/add.md
jorgeorpinel Mar 15, 2021
86813ad
Restyled by prettier
restyled-commits Mar 15, 2021
725aa92
Merge pull request #2303 from iterative/restyled/jorge
jorgeorpinel Mar 15, 2021
f2350ab
ref: import + push/pull notes
jorgeorpinel Mar 15, 2021
14b62cc
ref: simplify add -o
jorgeorpinel Mar 15, 2021
d63b07f
ref: update add --to-remote desc
jorgeorpinel Mar 15, 2021
94010d7
ref: simplify add -o example intro
jorgeorpinel Mar 15, 2021
562b63c
ref: mention soft/hard links in add -o example
jorgeorpinel Mar 15, 2021
f694719
ref: external data cop edits
jorgeorpinel Mar 15, 2021
d5e793e
ref: avoid term "transfer" for -o/-to-remote (1)
jorgeorpinel Mar 15, 2021
0166b1f
ref: relink to add/import -o/-to-remote examples including
jorgeorpinel Mar 16, 2021
696fa53
ref: updated add/import to-cache/remote example titles
jorgeorpinel Mar 16, 2021
15097f1
ref: a couple more copy edits to add -o/-to-remote
jorgeorpinel Mar 16, 2021
31394de
ref: update --to-remote copy edits
jorgeorpinel Mar 16, 2021
0f2a2b1
ref: roll back changes not related to #2302
jorgeorpinel Mar 16, 2021
3d10596
Merge branch 'master' into jorge
jorgeorpinel Mar 17, 2021
1082c85
ref: clarfy --out option
jorgeorpinel Mar 17, 2021
b943df5
ref: rename add -o/-to-remote examples
jorgeorpinel Mar 17, 2021
b25da5c
ref: other copy edits to add -o/-to-remote
jorgeorpinel Mar 17, 2021
aa171d4
ref: no hard links for add -o + ext cache
jorgeorpinel Mar 17, 2021
61f8806
ref: more edits to add/import-url to-cache/remote
jorgeorpinel Mar 17, 2021
d5f284a
Merge branch 'master' into jorge
jorgeorpinel Mar 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ref: fix mac config file locs
jorgeorpinel committed Mar 15, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit cd599c8229f6d49f204acd271986e23ef612c59d
8 changes: 4 additions & 4 deletions content/docs/command-reference/config.md
Original file line number Diff line number Diff line change
@@ -45,10 +45,10 @@ multiple projects and users, respectively:
}
</style>

| Flag | Priority | Mac location | Linux location (typical\*) | Windows location |
| ---------- | -------- | -------------------------------------- | -------------------------- | --------------------------------------------------------- |
| `--global` | 3 | `$HOME/Library/Preferences/dvc/config` | `$HOME/.config/dvc/config` | `%LocalAppData%\iterative\dvc\config` |
| `--system` | 4 | `/Library/Preferences/dvc/config` | `/etc/xdg/dvc/config` | `%AllUsersProfile%\Application Data\iterative\dvc\config` |
| Flag | Priority | Mac location | Linux location (typical\*) | Windows location |
| ---------- | -------- | ----------------------------------------------- | -------------------------- | --------------------------------------------------------- |
| `--global` | 3 | `$HOME/Library/Application\ Support/dvc/config` | `$HOME/.config/dvc/config` | `%LocalAppData%\iterative\dvc\config` |
| `--system` | 4 | `/Library/Application\ Support/dvc/config` | `/etc/xdg/dvc/config` | `%AllUsersProfile%\Application Data\iterative\dvc\config` |

> \* For Linux, the global `dvc/config` may be found in `$XDG_CONFIG_HOME`, and
> the system-wide one in `$XDG_CONFIG_DIRS[0]`, if those env vars are defined.