2019年1月9日 星期三

git 筆記


複製repo
git clone repo_url

將所有檔案加入追中
git add .

將所有追蹤的檔案提交至本地倉庫
git commit -m"commit message"

加入遠端倉庫url並在本地端以remote_name代稱
git remote add remote_name remote_url

將本地端commit紀錄推上遠端
git push remote_name local_branch_name:remote_branch_name

將遠端的分支刪除
git push remote_name :remote_branch_name

拉下遠端倉庫commit紀錄,並與當前分支合併
git pull

拉下遠端倉庫commit紀錄
git fetch

與遠端分支合併
git merge remote_url remote_branch

與本地分支合併
git merge local_branch

刪除本地端分支
git branch -d branch_name

新增一本地分支並用以存取遠端分支
git checkout -b local_branch_name remote_branch_name

切換版本並將更新工作目錄更改至當時commit之狀態
git checkout commit_id

編輯commit訊息
git commit --amend commit_id

顯示本地分支資訊
git branch

顯示所有分支資訊
git branch --all

顯示詳細遠端倉庫資訊
git remote -v




沒有留言:

張貼留言