Web安全總結
阿新 • • 發佈:2021-12-09
在自己的世界裡獨善其身, 在別人的世界裡順其自然。
刪除遠端分支
# 方法一:
git push origin --delete branchName
#方法二:推送一個空分支到遠端分支,其實就相當於刪除遠端分支
git push origin :branchName
檢視本地分支與遠端分支關聯情況
git branch -vv # 檢視本地分支與遠端分支關聯情況
git branch # 檢視本地分支
git branch -a # 檢視所有分支(包括本地和遠端)
git branch -r # 檢視遠端分支
本地分支與遠端分支關聯
# 建立關聯 git branch --set-upstream-to origin/remote-branch # 過期了,可能不可用 git branch --set-upstream local-beanch origin/remote-branch # 如果是通過fetch新建的分支,預設會自動建立關聯,如: 1.獲取遠端分支 git fetch origin branch-name 2.根據拉取的遠端分支新建一個分支 git checkout -b new-brranch-name origin/branch-name 3.新分支已經和對應的遠端分支相關聯,可直接(當只有一個): git pull git push
詳細:http://www.ruanyifeng.com/blog/2014/06/git_remote.html
不管是否存在對應的遠端分支,將本地的所有分支都推送到遠端主機
git push --all origin # 遠端主機為origin
強制push本地分支覆蓋遠端分支
git push --force origin # 若只有一個遠端主機,origin可不寫
git stash
git stash/git stash push # 新建一個儲藏,直接執行git stash等同於git stash push git stash push -u # -u是--include-untracked的簡略形式,此命令可以將未跟蹤檔案一併儲存。 git stash push -a # -a是--all的簡寫形式,規定被修改的檔案連同被忽略檔案也被儲存起來 git stash push -k # -k是--keep-index簡略形式,表示不重置暫存區,預設值是--no-keep-index git stash list # list [<options>] 展示當前儲存庫中的儲存單元列表. git stash show # show [<stash>] 展示儲存單元和最新提交的diff結果.如果沒有給定<stash>引數時,會對比最新的儲存單元. git stash pop # pop [--index] [-q|--quiet] [<stash>]移除單個儲存單元. git stash apply # 用於重新儲存 git stash drop stash@{1} # 刪除指定儲藏 git stash clear # 刪除所有儲藏
1.git stash push 和 git stash save的區別:
git stash save 不能精確到某路徑,即git stash save abc/test.txt
依然會儲藏當前所有的改動,而git stash push abc/test.txt
將只儲藏abc/test.txt
的改動,其他檔案的改動並不儲藏。一般推薦使用git stash push
2.參考:
-
git stash: https://www.softwhy.com/article-8628-1.html
-
git stash push和git stash pop的區別:https://www.softwhy.com/article-8630-1.html
重置暫存區,使.gitignore
檔案配置生效
如果遠端已經存在對應的檔案(想要ignore的),這時直接在.gitignore
檔案新增使不生效的,可以使用:
git rm --cached 對應檔案 # 重新add和commit
git rm -r --cached . # 這是全部刪掉重新add和commit
感謝閱讀,如有問題,請批評指正,謝謝。