Git- [!remote rejected]:refusing to delete the current branch
前言:
為了測試一些 git 命令的實現,我在 github 中新建了一個遠端倉庫 DR_testGit,測試後,我試圖刪除測試分支的時候,出現了下列提示:
問題解讀
經歷過上次的問題,我已經學會出了問題,Google 之前先首先仔細看看返回的錯誤提示。
![remote rejected] dev_test (refusing to delete the current branch: refs/heads/dev_test)
錯誤原因是刪除命令被遠端倉庫拒絕,因為遠端分支 dev_test
是當前分支。
那麼,如何檢視遠端倉庫的當前分支是什麼?
1.登入你的 github 中進入 Repository 頁面,
2.找到對應的遠端倉庫
3.點選 Setting頁面,
4.選擇 Branchs,找到 Default branch 項,就能檢視和修改預設分支了。
如下:
修完完畢之後,不要忘記點選旁邊的 update 按鈕,update一下才能生效。
也許你和我一樣,第一反應是看命令視窗中顯示的當前分支,很不幸,是顯示著當前分支卻是 dev
,而不是dev_test
,和錯誤提示不符合。原因是因為命令列視窗顯示的是本地倉庫的版本庫,而錯誤提示是遠端倉庫發出的,請注意[remote rejected]
字樣。
歡迎關注博主的微信公眾號,快快加入哦,期待與你一起成長!
相關推薦
Git- [!remote rejected]:refusing to delete the current branch
前言: 為了測試一些 git 命令的實現,我在 github 中新建了一個遠端倉庫 DR_testGit,測試後,我試圖刪除測試分支的時候,出現了下列提示: 問題解讀 經歷過上次的問題,我已經學會出了問題,Google 之前先首先仔細看看返
remote:error:refusing to update checked out branch:refs/heads/master"的解決辦法 git
remote:error:refusing to update checked out branch:refs/heads/ma
git push時提示"fatal: The current branch master has no..."
git push到遠端倉庫時提示:fatal: The current branch master2 has no upstream branch. To push the current branch and set the remote as upstream, use git pu
git clone之後再去git push遇到的問題(The current branch master has no upstream branch)和(you can't push to...)
目前正在做一個Laravel的專案,考慮到以後的團隊合作,所以就用git clone git://github.com/dengao123/sample.git類似的命令獲取了遠端的倉庫程式碼,但是當我用git push提交程式碼時確遇到了2問題。 1. 第一次提交時
remote:error:refusing to update checked out branc
.html target article tails ini 順序 用法 bar archive 參考網上的GIt服務器配置流程(http://blog.csdn.net/ice520301/article/details/6142503) 遇到了 http://www
Git:fatal: refusing to merge unrelated histories
代碼 hist blog 如何 origin 分支 master 版本 sof 如何去解決fatal: refusing to merge unrelated histories 先pull,因為兩個倉庫不同,發現refusing to merge unrelated h
git解決fatal: refusing to merge unrelated histories
先pull,因為兩個倉庫不同,發現refusing to merge unrelated histories,無法pull 其實這個問題是因為 兩個 根本不相干的 git 庫, 一個是本地庫, 一個是遠端庫, 然後本地要去推送到遠端, 遠端覺得這個本地庫跟自己不相干, 所以告知無法合併.
You seem to have the current working directory in your LD_LIBRARY_PATH environment variable.
轉載地址:https://blog.csdn.net/qq_24755999/article/details/78722788 問題現象: You seem to have the current working directory in your LD_LIBRARY_PATH envir
解決Git中fatal: refusing to merge unrelated histories
Git的報錯 在使用Git的過程中有時會出現一些問題,那麼在解決了每個問題的時候,都需要去總結記錄下來,下次不再犯。 一、fatal: refusing to merge unrelated histories 今天在使用Git建立專案的時候,在兩個分支合併的時候,出現
[iOS] How to get the current time as datetime in swift
let date = Date() let calendar = Calendar.current let hour = calendar.component(.hour, from: date) let minutes = calendar.component(.minute, from: date
Git: There is no tracking information for the current branch.
在執行git pull的時候,提示當前branch沒有跟蹤資訊: git pull There is no tracking information for the current branch. Please specify which branch you
Git報錯-refusing to merge unrelated histories
問題描述 github建立了git倉庫並建立了README檔案, 本地新增遠端倉庫:$git remote add origin 進行提交時,Git報錯-refusing to merge unrelated histories 原因分析 出現這個問題的最主要原因還是在於本地
git 報錯 gitThere is no tracking information for the current branch. Please specify which ...
Git命令git pull 或者git push報錯 新建本地分支後將本地分支推送到遠端庫, 開發完成需要push的時候,使用git pull 或者 git push 報錯 gitThere is no tracking information for th
git 報錯 gitThere is no tracking information for the current branch. Please specify which branch you w
新建本地分支後將本地分支推送到遠端庫, 使用git pull 或者 git push 的時候報錯 gitThere is no tracking information for the curren
"There is no tracking information for the current branch" 解決方法
col pan gin ranch eas code pre 解決方法 git 因為新創建的分支push到遠程倉庫後沒有與本地分支關聯,下面語句可以令遠程分支與本地分支關聯起來 git branch --set-upstream-to=origin/release_3
在eclipse中執行team->pull出現the current branch is not configured for pull
今天在github修改檔案之後想同步到本地工程,在eclipse中點選team–>pull時出現如下提示: 解決方法: 開啟所在倉庫的.git資料夾,修改config檔案,加入如下引數: [branch "master"] remote = master
eclipse>>GitHub管理專案出現異常The current branch is not configured for pull No value for key branch解決方法
1,進入Window-->preferences-->Team-->Git-->Configuration 2,選擇 Repository Settings 3,點選A
【git】updates were rejected because the tip of your current branch is behind its remote counterpart
剛建立的github版本庫,在push程式碼時出錯: $ git push -u origin master To [email protected]:******/Demo.git ! [rejected] master -> master (non-fast-forwa
Git提交失敗之 Updates were rejected because the tip of your current branch is behind
錯誤顯示 D:\devworkspace\ecpphoton\jcodef>git push To https://github.com/osxm/jcodef.git ! [rejected] master -> master (non-fast-forward)
Git工作筆記004---torisegit使用時Updates were rejected because the tip of your current branch i
JAVA技術交流QQ群:170933152 因為要跟別的公司一塊合作開發,我們用svn他們用git,現在又得用git 我在提交的時候:報如下錯誤: git.exe pu