Skip to content

kt-yamaguchi/training20160704

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

training20160704

本日のマテリアル

GitHub for developers

gitツール

Git for Windows
GitHub Desktop

git資料

Gitチートシート - PDF
Pro Git 2 eBook - Gitの電子書籍。

その他

GitHub Guides
GitHub Training & Guides - Youtube (日本語字幕付)
Emoji seacher - 絵文字検索

git setup

アカウント

nameとemailはGitHubのアカウントと一致させてください。
$ git config --global user.name "name"
$ git config --global user.email "email address"

確認
$ git config --list | grep name
$ git config --list | grep email

表示と改行コードの設定

$ git config --global color.ui auto

Windows
$ git config --global core.autocrlf true
Mac/Linux
$ git config --global core.autocrlf input

改行コードを変更しない場合
$ git config --global core.autocrlf false

Windowsユーザ

Git Bashでの日本語の文字化け対策
$ git config --global core.quotepath false

CommitメッセージをvimではなくNotepadで入力する場合。
$ git config --global core.editor notepad
NotepadはUTF-8ではないので、日本語はWEB上で文字化けしますのでご注意ください。

サクラエディタを指定してもOK。
$ git config --global core.editor "'C:/Program Files/sakura/sakura.exe' -CODE=4"
sakura.exeのパスは、各自のローカルでご確認ください。

以下は必要に応じて設定を行ってください

HTTP Proxy

$ git config --global http.proxy http://xxxx:8080

その他

GitHub Enterpriseを自己署名証明書で運用する場合
$ git config --global http.sslVerify false

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published