git-rebase
Reverting an interactive git rebase
After completing a feature branch, during a git rebase -i I accidentally removed all my commits. I\'m not completely sure but I suspect that instead of squashing 开发者_JAVA技巧my commits, I replaced[详细]
2023-02-18 20:38 分类:问答Git: merging two diverged, independent repos
Repository A: migrated to git from a project\'s SVN at revision r: cloned the whole thing including all of SVN\'s history, tags, etc. A little development on git afterwards.[详细]
2023-02-17 11:46 分类:问答Git rebase --continue opens editor
After a rebase failed with a conflict, I could not continue the rebas开发者_开发知识库e using a Git GUI client. When performing[详细]
2023-02-17 11:00 分类:问答Extract out changes to single file in a range of git commits
The build system I work with usually requires that the project data is committed to the local repository before a full build can be performed.This -- along with my usual habit of committing frequently[详细]
2023-02-17 10:11 分类:问答Git: apply topic branch using rebase (without merge)
There is a small topic branch (on a contributor\'s remote repo) that I\'d like to apply on top of my master.I think the canonical way to do this is:[详细]
2023-02-14 00:40 分类:问答What could cause "number of commits ahead" to change after rebasing?
Before rebasing a feature branch that I hadn\'t touched in a few weeks, it was 25 commits ahead of master. After rebasing, it is now 18 commits. There were several conflicts I had开发者_StackOverflow中[详细]
2023-02-11 18:28 分类:问答git rebase --onto causes conflict — why?
I\'m trying a git rebase --onto master myremote/master~21 myremote/master to add the latest 21 commits from a remote repository on mine.[详细]
2023-02-09 00:50 分类:问答Rebasing a Git merge commit
Take the following case: I have some work in a topic branch and now I\'m ready to merge back to master:[详细]
2023-02-06 16:35 分类:问答How to remove an in-between merge in git?
I want to remove an in-between merge (remove, not squash) and then move the last 2 commits to a new branch.[详细]
2023-02-05 11:36 分类:问答git: removing changes introduced by a series of bad commits
say i have a git repo, with such commit history: A-B-C-D-E Now, suddenly i realise, that commits B and C are completely flawed and unnecessary.[详细]
2023-01-28 09:00 分类:问答