2017-01-30 13 views
0

私はaccounting枝にあったとmasterなぜ私は持っています: `警告:ブランチ 'アカウンティング'はまだマージされていません。

* 7a34928 (HEAD -> master) Merge branch 'accounting' 
|\ 
| * 8d6b273 (accounting) Typo fix 
| * 19f5fdc (origin/accounting) SCHEMA 19: Lock Saldo* tables when inserting new rows 
| * 9261d7b Code comments; Prettify; Small optimizations 
| * 0a44c1d FIX: Added required field queries 

にマージは、今私はaccountingブランチを削除したいが、エラーました:私はこのエラーを得たのはなぜ

git branch -d accounting 
warning: not deleting branch 'accounting' that is not yet merged to 
     'refs/remotes/origin/accounting', even though it is merged to HEAD. 
error: The branch 'accounting' is not fully merged. 
If you are sure you want to delete it, run 'git branch -D accounting'. 

を?どのようにそれをエスケープするには?

+0

'accounting'が先に'起源/ accounting'のあることを警告です。ただ修正を押してください。 – chepner

答えて

1

アカウンティングブランチをプッシュするか、リモートアカウンティングブランチを削除します。あなたの場合

、あなたはブランチを削除しようとしているとして、1。2.ローカルブランチを削除し、リモートブランチを削除します。

# You are on master here. 
git push origin :accounting 
git branch -d accounting 
関連する問題