TOC

本文章僅是個人對 git 網路資源的整理筆記,若有侵權請告知 email : [email protected] 會盡快處理

Reference

https://github.com/twtrubiks/Git-Tutorials

Git 教學 - Git 書 - 為你自己學 Git | 高見龍

以及所有內文中的連結

Learning Points

Setting

User’s name & email

# set your own info
git config --global user.name "DennisLiu16"
git config --global user.email "[email protected]"

# check info 
git config --global user.name  # return DennisLiu16
git config --global user.email # return [email protected]

Search config set before

git config --list

Git Init