GIT 是版本控制系統 一、環境建置: 指令: sudo apt-get install git-core 指令: git --version 可查看版本 二、設定(Configuration): 給GIT取名字 指令: git config --global user.name = kobayashilin 可以知道是誰修改資料 指令: git config --global user.email "your_email@whatever.com" 指令: git config --list 實體位置在哪裡? /home/kobayashilin/.gitconfig PS: git config 是對 git 做設定,他的設定檔會放在 ~/.gitconfig。要注意 git config 設定的命令不可以設定多次,多次的話數值會重複,會出錯。如果有這樣的問題你可以先把 .gitconfig 砍掉~