Git install
Git is need for publish your site.
For Mac Users
Useally, you don't need any setup.
But if you see this error message, "xcrun: error: invalid active developer",
input this command
xcode-select --install
It takes a few minutes.
But if you see this error message, "xcrun: error: invalid active developer",
input this command
xcode-select --install
It takes a few minutes.
For Windows Users
You can install by here.Official Git Site
確認する
$ git --version
In Terminal App on Mac, or *Powershell** on Windows, please inout above command.
First time only
Set up git configrations
$ git config --global user.name "YOUR_NICKNAME"
$ git config --global user.email "YOUR_EMAIL"
$ git config --global core.autocrlf false
例
$ git config --global user.name "Comet"
$ git config --global user.email "comet@example.com"
$ git config --global core.autocrlf false
Back to the Docs