Add local git config to guest vm

This commit is contained in:
Marc Guyer 2015-10-08 14:09:27 +00:00
parent 4a3fdfaea2
commit 3c1c9c49d5

3
Vagrantfile vendored
View file

@ -11,6 +11,9 @@ Vagrant.configure(2) do |config|
gem install --no-ri --no-rdoc bundler
SHELL
# add the local user git config to the vm
config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig"
config.vm.provision "install",
type: "shell",
privileged: false,