Git官網下載:https://git-scm.com/downloadjavascript
選擇win系統,下載。而後選擇安裝路徑,一路next。安裝成功後 打開cmd 輸入 git --versionjava
配置信息git
設置user.name fetch
git config --global user.name "your name"
設置user.emailurl
git config --global user.email "your email"
設置CRLF配置code
git config --global core.autocrlf true
本身經常使用的一些Git命令blog
- 顯示command的help
git help <command>
- 將工做文件修改提交到本地暫存區
git add <file>
- 提交修改內容
git commit "message"
- 將本地主分支推到遠程
git push -u <remoteName> <localBrachName>
- 克隆遠程倉庫
git clone <url>
- 初始化倉庫
git init
- 建立倉庫
git remote add <remoteName> <url>
- 刪除遠程倉庫
git remote rm <name>
- 修改遠程主機名
git remote rename <remoteName> <newRemoteName>
- 拉取遠程倉庫
git pull <remoteName> <localBrachName>
- 修改遠程倉庫
git remote set-url --push <remoteName> <newUrl>
- 獲取遠程倉庫的更新
git fetch <remoteName>
- 獲取遠程倉庫特定分支的更新
git fetch <remoteName> <brachName>