简体   繁体   中英

Wordpress Vagrant VV - How to setup git?

I am using Varying-Vagrant-Vagrants for Wordpress development. I am able to setup a new site, it works great when I run vv create . However how can I setup git into my wp-content directory?

I've already ran the command git init on wp-content directory and after adding all files, I ran git commit -m "Initial commit" and got this error message:

gpg: skipped "username <username@emails.com>": secret key not available
gpg: signing failed: secret key not available
error: gpg failed to sign the data
fatal: failed to write commit object

(I removed my personal details from the message)

Any idea what this error is about? I can run git normally on other projects that are not part of Wordpress VVV.

you need a user.name on top of your email. (probably your name is set in your gitconfig on your host machine or the other VM). In vvv VM you can run

git config --global user.name "<name>"

to add your name automatically or edit the gitconfig file

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM