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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
###################################################################################################
# .driverc
###################################################################################################
# Copyright 2017-2018 Emmanuel T Odeke <emm.odeke@gmail.com>
#
# Enhanced by Jean-Christophe Manciot <manciot.jeanchristophe@gmail.com>
# https://github.com/odeke-em/drive/issues/778#issuecomment-267805915
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# This file is using a project hosted at https://github.com/odeke-em/drive, originally developed
# by Burcu Dogan while working on the Google Drive team and now maintained by Emmanuel T Odeke.
#
# Attribution — You must give appropriate credit, provide a link to the license, and indicate if
# changes were made. You may do so in any reasonable manner, but not in any way that
# suggests the licensor endorses you or your use.
###################################################################################################
###################################################################################################
#
# Text file located in <google_drive_folder> and listing the options affecting:
# - all commands: [global]
# - a group of commands: [<command1>/<command2>/<command3>/...]
# - a single command: [<command1>]
#
# All global keys (options) apply until the same keys are overridden by more specific values in
# [<command>] sections.
#
# Expected format:
# ---------------
# [global] # Affecting all commands
# key1=value1
# key2=value21
# key3=value30
#
# [list/pull/push] # More specific values affecting only those commands
# key3=value31,value32
# key4=value41
# [publish] # More specific values affecting only that command
# key2=value22
# key3=value33
# key5=value51,value52,value53
#
# Supported sections:
# ------------------
# The list of possible [<command>] names is subject to change but should at least contain
# the following ones for now:
# + global or all or *: for all drive-<command>
# + clashes --> for drive-check-duplicates
# + delete for drive-delete
# + list for drive-list
# + list-shared for drive-list-shared
# + list-starred for drive-list-starred
# + publish for drive-publish
# + pull for drive-pull
# + push for drive-push
# + share-link for drive-share-link
# + stat --> for drive-stats
# + sync for drive-sync
# + touch for drive-touch
# + trash for drive-trash
# + unpublish for drive-unpublish
# + unshare for drive-unshare
# + untrash for drive-untrash
#
# Only <key>=<value> lines are accepted so far
# Cf. https://github.com/odeke-em/drive for a list of all options per command.
#
###################################################################################################
[global]
# Enabling infinite depth
depth=-1
# Disabling creation of *.desktop files to automatically open Google Docs, Drawings, Presentations,
# Sheets etc and all files affiliated with docs.google.com with an external opener.
desktop-links=false
# Turning checksum verification back on
# ignore-checksum=false
# Using local objects as the base
base-local=true
# Not considering hidden objects
hidden=false
# Encryption password for pushed objects
#encryption-password="<your_secret>"
# Decryption password for pulled objects
#decryption-password="<your_secret>"
# Listing allows for sorting by following fields; to do this in reverse order, suffix *_r or *-` to the selected key
# - name,
# - version,
# - size,
# - modt (lastModifiedByMeTime),
# - lvt (lastViewedByMeTime),
# - md5 (checksum).
#
# --sort=name,version,modt,size_r
|