github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/content/commands/rclone_config_create.md (about) 1 --- 2 date: 2019-06-20T16:09:42+01:00 3 title: "rclone config create" 4 slug: rclone_config_create 5 url: /commands/rclone_config_create/ 6 --- 7 ## rclone config create 8 9 Create a new remote with name, type and options. 10 11 ### Synopsis 12 13 14 Create a new remote of <name> with <type> and options. The options 15 should be passed in in pairs of <key> <value>. 16 17 For example to make a swift remote of name myremote using auto config 18 you would do: 19 20 rclone config create myremote swift env_auth true 21 22 Note that if the config process would normally ask a question the 23 default is taken. Each time that happens rclone will print a message 24 saying how to affect the value taken. 25 26 If any of the parameters passed is a password field, then rclone will 27 automatically obscure them before putting them in the config file. 28 29 So for example if you wanted to configure a Google Drive remote but 30 using remote authorization you would do this: 31 32 rclone config create mydrive drive config_is_local false 33 34 35 ``` 36 rclone config create <name> <type> [<key> <value>]* [flags] 37 ``` 38 39 ### Options 40 41 ``` 42 -h, --help help for create 43 ``` 44 45 See the [global flags page](/flags/) for global options not listed here. 46 47 ### SEE ALSO 48 49 * [rclone config](/commands/rclone_config/) - Enter an interactive configuration session. 50