Git - 相關常用指令
- git 從 2.14 版起支援 windows 的憑證存放區設定
- 使用 git config --global http.sslBackend schannel 指令啟用,會跳出帳號密碼視窗讓你輸入
- pwd
- cd
- git status
- git add [path/file_name]
- git reset HEAD [path/file_name]
- 將檔案從 state 區移回到 working area 區,修改還在
- git checkout [branch]
- git branch
- git branch -d [branch]
- git branch -D [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
沒有留言:
張貼留言