Git 設定個人資訊

第一次碰到這問題。

簡述

進了公司後我才碰到這個問題,就是公司的專案在使用 git 時通常會設定公司的信箱及名稱,可是有時會希望自己的專案上可以用個人的設定,這時候就可以用下面的方法來調。

還蠻簡單的,只要進入到自己的專案目錄底下直接設定:

1
2
git config user.name "your name"
git config user.emai; "your email"

這樣就會對專案底下的 .git 新增相關的 config,只要在這個專案的範圍都會以這邊的 config 為主。

順道一提,如果要修改全域設定的話,可以這樣做:

1
2
git config --global user.name "your name"
git config --global user.emai; "your email"
利用 Axios 來封裝 API 再探 TypeScript
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×