| Summary: | `git rebase --skip` is unimplemented | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Remy Suen <remy.suen> |
| Component: | Node | Assignee: | Remy Suen <remy.suen> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P2 | CC: | Michael_Rennie, steve_northover |
| Version: | 13.0 | ||
| Target Milestone: | 15.0 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Remy Suen
Remy, thanks for finding this. Want to take a crack at it? (In reply to Steve Northover from comment #1) > Remy, thanks for finding this. Want to take a crack at it? I am looking at this right now. I almost have the simple case working right now. My working directory and index is completely clean with no changes or untracked files but I don't have my branch B and HEAD pointers quite right... 1. Commit A on branch A modifies the file. 2. Commit B on branch B modifies the file. 3. User is on branch B. 4. Rebase branch A. 5. Conflict occurs. 6. Skip it. 7. The tip of branch B is now pointing at commit A and the working directory and index is completely clean. I have the simple case working now and have an idea on how to implement the more general case... |