GIT GIT 常用命令

2021-07-22 08:21:38 字數 793 閱讀 6501

切換分支:git checkout name

撤銷修改:git checkout -- file

刪除檔案:git rm file

檢視狀態:git status

新增記錄:git add file 或 git add .

新增描述:git commit -m "miao shu nei rong"

同步資料:git pull

提交資料:git push origin name

分支操作

檢視分支:git branch

建立分支:git branch name

切換分支:git checkout name

建立+切換分支:git checkout -b name

合併某分支到當前分支:git merge name

刪除分支:git branch -d name

刪除遠端分支:git push origin :name

===git status

現在工作分支狀態

#on branch master:本地所在分支

#your branch is up-to-date with 'origin/develop'.遠端所在分支

git branch -a

檢視本地和遠端分支

git branch --set-upstream-to=origin/develop

將遠端分支切換到origin/develop

git push origin head:develop  

push到origin的develop分支

GIT git常用命令

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

git git常用命令

設定提交 時的使用者資訊 git config global user.name name git config global user.email email address 檢視所有的已經做出的配置 git config list 在當前目錄初始化乙個git 庫 git init clone乙個...

git Git常用命令

分支管理 操作和提交 從暫存區域移除檔案 重新命名檢視提交歷史 遠端倉庫的使用 推送到遠端倉庫 檢視某個遠端倉庫 遠端倉庫的重新命名與移除 撤銷想具體學習git的朋友可以去官網文件了解 git教程 使用git init新建倉庫 git init projectname 使用git clone轉殖已有...