我創建了一個新的分支爲我的1.0.2修復。一旦我結束了我想把它們合併到我的主人,所以我用:Git:說主人是最新的,但刪除分支時說它不是'
git merge 'v1.0.2'
但是,它告訴我,這是「已經啓動對date`,這很奇怪。我說,好吧,這是沒有問題的,所以我嘗試刪除分支:
git branch -d 'v1.0.2'
但現在它告訴我error: The branch 'v1.0.2' is not fully merged.
。
爲什麼我的更改未被合併到第一位?我需要以某種方式迫使他們合併?
編輯:輸出的git log --all --oneline --graph --decorate
* a783018 (HEAD, origin/master, master) Updated with 1.0.2 changes
* c208285 Updates
| * 655b0ea (v1.0.2) Submitted 1.0.2 to apple for review
| * 0d4f33d Updates
|/
| * 02f7155 (origin/v1.1, v1.1) Additional fixes
| * 5a68697 Renaming classes and .m .h files with three letter prefixes to comply with Apple requirements
| * c90a76d Added pin pad as an option
| * 3dc6ceb Adding new security methods to lock app if the user chooses
| * 3bf1c88 Updates
|/
* 71af916 Bug fixes
* 523672f (tag: v1.0.2) Final fixes before release
* 0269dab Bug fixes and added new methods to specifically layout details screens
* e1e7c08 Bug fixes
* 071c9cc (tag: v1.0.1) Last changes before 1.0.1 submission
* 8d56576 Bug fixes
* 9e86414 Major file restructure for easier git viewing and structure
* 4f14c9e Updated a few methods to no longer use the Utility object
* 1be42ea Moved some properties to the ZSSingleton rather than the Squiz Matrix singleton
* 1450e7d Updated a few code snippets
* 27c3ebb Updated methods for Metadata
* baf8a6c (tag: v1.0) Final fixes, submitted to apple
* d5ffb6c Addtional fixes
* aa7d123 Removed unused files
* a472a1d Removal of old Matrix library. Removal of ASIHTTPRequest!
* b533ac3 Added new attribute types
* 76c29ef Adding UIDatePicker for creating of Calendar assets
* 1fb09dc Added some fixes for ipad
* 0f93c82 Cleaning up of code, adding comments
* 27c7984 Cleaning up of code, adding comments
* d0d29bb Added ignore file
* 7911483 A file was deleted
* fdba63c First add of all files
也許承諾它,看看會發生什麼 –
嘗試提交,它很好。沒有警告。儘管爲什麼刪除分支告訴我它沒有完全合併,但仍然感到困惑。 –
你爲什麼使用引號? –