Git 指令學習筆記

2021-10-10 06:53:38 字數 693 閱讀 3374

因為最近寫專案,用到了 git 與 github ,在此記錄下學習 git 的指令筆記。

環境:linux centos

工作區(working directory)

版本庫(repository)

master分支

遠端庫的名字預設是origin

//初始化乙個git庫

git init

//關聯本地分支master與遠端庫origin

使用者名稱/版本庫.git

//將工作區中的檔案新增到暫存區

git add file

//將暫存區所有檔案新增到分支中

git commit -m "說明"

//檢視倉庫當前狀態,類似與ll

git status

//檢視所有日誌

git log

//用版本庫里的版本替換工作區的版本

git checkout file

//把本地 master 分支的最新修改推送至github

git push origin master

第一次推送時需要加上-u:git push -u origin master

git指令學習筆記

菜鳥教程 git branch教程 本地與伺服器連線 git 繫結郵箱與賬戶 git config global user.name your name git config global user.email you example.com1 檢視 的修改狀態 git status2 檢視 的修改...

Git 學習筆記之指令

1.安裝git 2.配置使用者資訊 git config global user.name qinyuwei git config global user.email qinyuwei qq.com 3.差異分析工具 git config global merge.tool vimdiff 4.檢視...

Git學習筆記之 常見指令

工作區 暫存區 倉庫 說明git config global user.name 名稱 註冊使用者名稱 git config global user.email 郵箱 註冊使用者郵箱 git init 在當前資料夾建立git專案 git mv game.py wordgame.py 本地安全地修改檔...