2019年8月16日 星期五

Git - 相關常用指令


  • SSL 憑證問題
    1. git 從 2.14 版起支援 windows 的憑證存放區設定
    2. 使用 git config --global http.sslBackend schannel 指令啟用,會跳出帳號密碼視窗讓你輸入
  • pwd
    • 顯示目前路徑
  • cd
    • 切換路徑
  • git status
    • 顯示目前 branch 狀態
  • git add [path/file_name]
    • 將檔案移到 stage 區
  • git reset HEAD [path/file_name]
    • 將檔案從 state 區移回到 working area 區,修改還在
  • git checkout [branch]
    • 切換 branch
  • git branch
    • git branch -d [branch]
      • 刪除 [branch]
    • git branch -D [branch]
      • 強制刪除 [branch]
  • git push [origin] :[branch]
    • 刪除遠端 branch
    • origin 指的是遠端主機的名字
    • [-f | -force ] 強制覆蓋遠端
  • git checkout -b [new_branch] [old_branch]
    • 建立 [new_branch] 且複製 [old_branch]
    • 可將 [new_branch] reset soft,用來重新整理 commit 點
  • git show [commit_id]
    • 顯示 [commit_id] 修改了那些檔案與內容
    • --no-patch 不顯示檔案與內容,只顯示 commit message
  • git commit --amend --no-edit
    • 直接將修改的檔案加入上次的 commit
    • --no-edit 不修改 commit message

沒有留言:

張貼留言