0
0

More than 5 years have passed since last update.

git メモ

Last updated at Posted at 2019-05-13

git global初期設定

$ git config --global user.name "<名前>"
$ git config --global user.email <メールアドレス>
$ git config --global core.autocrlf false
$ git config --global core.quotepath false
$ git config --global gui.encoding utf-8
$ mkdir -p ~/.config/git
$ cat <<EOF >~/.config/git/
>*~
>EOF

初期設定確認

$ cat ~/.gitconfig
[user]
name = your name
email = your-mail-address
[core]
autocrlf = false
quotepath = false
[gui]
encoding = utf-8
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0