We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When walking this through with outside developers, we needed to install homebrew and configure Git for this to work.
https://brew.sh/
brew cask install vagrant virtualbox brew install composer ansible
https://help.github.com/en/articles/setting-your-username-in-git https://help.github.com/en/articles/setting-your-commit-email-address-in-git
git config --global user.name "John Smith" git config --global user.email "email@example.com"
We encountered vagrant up failing if a local Git configuration wasn't created since it tries to copy it.
vagrant up
The text was updated successfully, but these errors were encountered:
I added this to a project:
# Install Homebrew. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" # Install depedencies. brew cask install vagrant virtualbox brew install composer ansible vagrant plugin install vagrant-hostmanager vagrant-auto_network # Configure Git with your name and email. git config --global user.name "John Smith" git config --global user.email "email@example.com"
Sorry, something went wrong.
No branches or pull requests
When walking this through with outside developers, we needed to install homebrew and configure Git for this to work.
https://brew.sh/
https://help.github.com/en/articles/setting-your-username-in-git
https://help.github.com/en/articles/setting-your-commit-email-address-in-git
We encountered
vagrant up
failing if a local Git configuration wasn't created since it tries to copy it.The text was updated successfully, but these errors were encountered: