GIT 經常使用命令

①:配置我的信息
$ git config --global user.name "Your Name"            //姓名
$ git config --global user.email "email@example.com"   //郵箱
②:生成公鑰,SSH認證做用
//進入$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

④git或略文件 .gitignore

/*
!.gitignore
!fw/
!fw/    
說明:忽略所有內容,可是不忽略 .gitignore 文件、根目錄下的 /fw/ 和 /fw/ 目錄,二級目錄應再次配置;
相關文章
相關標籤/搜索