Git基本命令使用

2021-10-09 07:40:51 字數 527 閱讀 4618

顯示所有本地分支

$git branch
顯示所有遠端分支

$git branch -r
新建乙個分支

$git branch [branch-name]
切換到指定的分支

$git checkout -b [branch-name]
合併指定分支到當前分支

$git merge [branch]
刪除指定分支

$git branch -d [branch-name]
刪除遠端分支

git push origin --delete 遠端分支名字
將本地倉庫某分支推送到遠端倉庫上

$git push [remote-name] [branch-name]

Git 基本命令使用

1 git init 1 git remote add 遠端主機名 遠端主機位址url 例如 git remote add origin 1 git add 2 git commit m reason for this commit 3 git push 遠端主機名 本地分支名 遠端分支名 例如 g...

Git使用 基本命令

git config global user.name your name 全域性 name 設定 git config global user.email email example.com 全域性 email 設定 pwd 檢視當前路徑 git init 初始化倉庫 git add readme...

git基本命令使用

點選前往 git init 將當前資料夾初始化為乙個倉庫 git clone 轉殖乙個遠端倉庫作為本地倉庫 git add 新增全部檔案到暫存區 git add 新增某個檔案到暫存區 git commit m 提交的相關資訊 建立分支 git branch 檢視當前有哪些分支 git branch ...