win10安裝git

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的helpgit 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>
相關文章
相關標籤/搜索