源地址:https://gist.github.com/guweigang/9848271 ...
初始化本地git倉庫 創建新倉庫 git init 配置用戶名 git config global user.name xxx 配置郵件 git config global user.email xxx xxx.com git status等命令自動着色 git config global color.ui true git config global color.status auto git ...
2017-07-07 11:06 0 1149 推薦指數:
源地址:https://gist.github.com/guweigang/9848271 ...
命令分類 設置和配置 獲取和創建項目 基本快照 分支和合並 git config help init clone add ...
常用命令 文檔下載地址: http://files.cnblogs.com/bugs/Git.7z ...
一些優秀git學習資源 Treehouse – 寫給設計師的 Git 入門介紹 Roger Dudler – Git 簡易教程 Pluralsight – Github:初學者指南 http://www.liaoxuefeng.com/wiki ...
Git (wiki: en chs )是一個免費開源的分布式版本控制系統,由linux內核作者linus Torvalds開發,大型開源項目linux kernel、Android、chromium、mono、dotnet、UE4等都使用Git管理項目 著名github網站使用Git托管所有 ...
git init 初始化本地git倉庫 git remote add origin git*******.git 建立遠程連接 eg:git remote add origin https://github.com/alibaba ...
...
查看、添加、提交、刪除、找回,重置修改文件 git help <command> # 顯示command的help git show # 顯示某次提交的內容 git show $id git co -- <file> # 拋棄工作區修改 git co . # 拋棄 ...