Git常用命令

2021-09-29 06:12:37 字數 1403 閱讀 1337

git config --list  //看git配置

git init  //初始化git

git config --unset --global user.name  //清空使用者配置

git config --global user.name "your name"  //使用者名稱

git config --global user.email "[email protected]"  //使用者密碼

git status  //檢視工作區狀態

git rm text.txt  //刪除工作區檔案

git add .  //新增到快取區

git commit -m "注釋"  //新增到本地倉庫

git remote add origin 你的遠端庫位址  //關聯遠端倉庫

git remote -v  //檢視下遠端倉庫的資訊

git remote show origin  //檢視一下遠端倉庫資訊

git remote rm origin  //移除遠端倉庫資訊

git clone 遠端倉庫位址  //轉殖遠端倉庫到本地倉庫

git pull origin master  //拉取遠端倉庫到本地倉庫

git push origin master  //推送本地倉庫到遠端倉庫

git restore --text.txt  //撤銷工作區修改

git restore --staged text.txt  //撤銷快取區修改

git reset --hard head^  //版本回退一次

git reset --hard head~100  //版本回退100次

git reset --hard 4da437f  //按版本號回退

git log  //命令可以檢視 commit 的記錄

git reflog  //找回版本號並且撤銷回退

git --version  //檢視git版本

git update-git-for-windows  //更新git版本

git config --global core.autocrlf false  //解決不同作業系統使用的換行符不同的問題

git config --global core.quotepath false  //解決git中文亂碼

vim test.txt

cat test.txt

按 a, i 或 o 進入編輯模式

按 esc 進入操作模式

在操作模式下,:wq 為寫入退出,:q! 不儲存退出

兩次d 刪行

撤銷:u

恢復撤銷:ctrl + r

linux常用命令

ls  //目錄下檔案列表

pwd  //目前所在的工作目錄的絕對路徑

cd  //目錄切換

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...