$ git config --global user.name "Your Name" //姓名 $ git config --global user.email "email@example.com" //郵箱
//進入$HOME/.ssh目錄。若是沒有建立過ssh密鑰,目錄爲空。 $ cd ~/.ssh $ ssh-keygen -t rsa -C "yourname@hotmail.com"
$ git add . $ git commit -m "備註" $ git remote add coding git@git.coding.net... $ git pull coding master $ git push coding master
/* !.gitignore !fw/ !fw/ 說明:忽略所有內容,可是不忽略 .gitignore 文件、根目錄下的 /fw/ 和 /fw/ 目錄,二級目錄應再次配置;