工具 git git常用命令總結(1)

2021-06-28 16:20:31 字數 532 閱讀 7308



列出當前可用分支:./mk listp

檢視本地分支:git branch

本地建立分支:git branch +新分支名

刪除本地新建分支:git branch -d +新分支名

檢視遠端分支:git branch -a

本地分支推到遠端:git push origin +新分支名

刪除遠端新建分支:git push origin :+新分支名

*表示所在當前分支

切換分支:git checkout +分支名 

檢視修改狀態:git status

更新到伺服器最新的狀態:git pull          git pull org

回退:git checkout +路徑和檔名

提交**:git add +路徑和檔案

git commit -m "log說明"

git push origin +分支名稱

檢視提交記錄:git log

回退:git reset --hard id +git id

Git Git工具常用命令

github使用指南 一.把本地 上傳到 github 0.提前配置好上傳位址 git config global user.name username git config global user.email your email 檢視使用者名稱和郵箱 git config user.name g...

GIT GIT 常用命令

切換分支 git checkout name 撤銷修改 git checkout file 刪除檔案 git rm file 檢視狀態 git status 新增記錄 git add file 或 git add 新增描述 git commit m miao shu nei rong 同步資料 gi...

GIT git常用命令

這裡我只寫幾個我經常用到的命令,用到的命令會持續更新。首先使用者配置,git提交時會引用這兩條資訊,用來說明是誰提交了 git config global user.name your name git config global user.email your email 初始化倉庫,相當於將乙個...