Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for atarax
| Type | On... | Excerpt | Status | Date |
|---|---|---|---|---|
| Edit | Post #295900 |
Post edited: |
— | 5 months ago |
| Edit | Post #295900 | Initial revision | — | 5 months ago |
| Answer | — |
A: How do I split a feature branch into two? A simple and flexible approach is to use interactive rebasing (`rebase -i`) which allows you to pick / drop / squash individual commits. In this case you would want to duplicate the branch (just check out a new branch on `HEAD`) and perform the interactive rebase. ``` on branch both-features ... (more) |
— | 5 months ago |
