git bash可以在windows下使用linux cmd line。
$ git config --global user.name "your name"
$ git config --global user.email "[email protected]"
$ git config --list
$ ssh-keygen -t rsa -c "[email protected]"
注:email應與git本地使用的郵箱一致。
ssh keys預設生成到使用者根目錄的/.ssh
目錄下,包含id_isa
和id_isa.pub
兩個檔案。
##還原到最近的版本,廢棄本地所有修改
$ git checkout .
## 把檔案納入版本控制,告訴 git 開始對這些檔案進行跟蹤
$ git
add[file]
## 從 git 中移除某個檔案,必須要從已跟蹤檔案清單中移除
$ git
rm## 檢視當前配置有哪些遠端倉庫
$ git remote
##(這兩句經常是一起用的)
$ git fetch
## 從遠端倉庫提取資料並將伺服器上的任何更新合併到你的當前分支
$ git merge
Git Github使用教程
一 配置github 1.註冊github賬戶renle177 2.新建 庫linux test 以上操作省略.二 本地操作配置 linux環境 1.安裝git及配置環境 yum y install git git config global user.name renle177 git confi...
Git GITHUB簡單使用
一 概念 git本地倉庫 別人的本地倉庫 通過遠端倉庫實現 通訊更新 二 遠端端 託管 1.註冊github賬號 2.建立遠端倉庫 new repository 輸入倉庫名稱,生成倉庫鏈結 my git 三 本地倉庫建立 1.安裝git msysgit.github.io 配置到系統路徑 2.配置使...
Git GitHub簡單使用
time 2019 2 26 theme git使用說明 2.安裝好git 之後,兩個快捷方式 1.開啟git bash 進入上面檔案目錄下 或者在檔案資源器中進入該目錄,然後右鍵 git bash here 2.輸入 git config global user.name github使用者名稱 ...