Git - HelloMirror/MagicMirror GitHub Wiki

Git Setting

git init
git config --global user.name "[Git User Name]"
git config --global user.email "[Git User Email]"
git remote add origin "[URL]"
git add .
git commit -m "[Message]"
git push origin master

Git Clone

git clone "[URL]"
git add .
git commit -m "[Message]"
git push