個人常用 常忘記 的GIT命令

2021-10-22 07:03:57 字數 520 閱讀 6497

之前右鍵的時候,選單上沒有 git bash相關命令,解除安裝重灌,git bash here的選項,勾選

git branch						#檢視本地所有分支,並且會標註目前是在哪個分支

git checkout -b 《本地分支名》 origin/《遠端分支名》

#拉取遠端分支並建立本地分支,切換到新分支

git branch -d 《本地分支名》

#刪除本地分支

git branch -d 《本地分支名》

#強制刪除本地分支

git branch --set-upstream-to=origin/《遠端分支名》

#將目前所在的分支與指定的遠端分支連線起來

git branch --unset-upstream 《本地分支名》

#取消本地分支與遠端分支的對應關係

git config user.name #檢視使用者名稱

git config user.email #檢視郵箱

git的常命令

mkdir filename 建立指定檔名稱的資料夾 cd filename 到達指定檔案 cd 返回上級檔案 pwd 顯示當先檔案路徑 git init 把當前目錄變成git可以管理的倉庫 git add filename 把檔案新增到倉庫暫存區 git commit m 版本描述 把檔案提交到倉...

Git個人常用命令

git status 檢視狀態和是否存在.git檔案 git clone com git 將線上 轉殖到本地桌面 git status 檢視工作區 git add 新建乙個空檔案新增到暫存區 git commit m 將上空檔案提交到版本庫 本地倉庫 是注釋 git push 本地 提交到線上倉庫 ...

Linux常用命令(自己記不住常忘記的)

資料庫的啟動 lsnrctl start啟動網路監聽服務,執行dbstart啟動資料庫系統。資料庫的關閉 lsnrctl stop關閉網路監聽服務,執行dbshut關閉資料庫系統。啟動systemctl start firewalld重啟 systemctl restart firewalld關閉 ...