大家好,我是烏木白,今天要介紹大家如何使用Git,這一篇不難喔!
每個人使用Git之前,Git都會詢問你是誰 Who are you? 這時候我們就要先設定你的 Username 和 Password
$ git config --global user.name "wumubai"
$ git config --global user.email "wumubai@gmail.com"
可以輸入以下這一段喔
$ git config --list
他就會顯示以下內容
user.name=wumubai
user.email=wumubai@gmail.com
大家看吧! 其實不難,大家要多嘗試喔!!
資料來源:
高見龍老師-為你自己學 Git