Merge pull request #4146 from techtonik/patch-1

website/docs: Add usage example to provisioning/file
This commit is contained in:
Mitchell Hashimoto 2014-08-06 10:06:54 -07:00
commit fca338a625
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ File provisioning is a simple way to, for example, replicate your local
you won't have to run `git config --global` every time you provision a
new VM.
Vagrant.configure("2") do |config|
# ... other configuration
config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig"
end
Note that, unlike with synced folders, files that are uploaded will not
be kept in sync. Continuing with the example above, if you make further
changes to your local ~/.gitconfig, they will not be immediately reflected