Git的日常使用

Heisenberg_wang發表於2020-09-01

Git常用命令

  • git clone
  • git push
  • git add
  • git commit
  • git checkout
  • git pull

    說明:
  • workspace:工作區
  • staging area:暫存區/快取區
  • local repository:本地倉庫
  • remote repository:遠端倉庫

    簡單操作步驟

    git init   #初始化倉庫
    touch README.md
    git add .  #新增檔案到暫存區
    git commit -m "第一次提交"  #將暫存區的內容新增到倉庫
    git push    #將本地倉庫推到遠端倉庫

    常用指令




分支管理

列出所有分支

git branch

建立分支

git branch (branch_name)

切換分支

git checkout (branch_name)

合併分支

git merge

建立新分支並立即切換到該分支下

git checkout -b (branch_name)

刪除分支

git branch -d (branch)
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章