2
votes
1answer
68 views
git rebase interactive: squash merge commits together
Hi,
I wanted to have a simple solution to squash two merge commits together during an interactive rebase.
My repository looks like:
X --- Y --------- M1 -------- M2 (my-featu …
0
votes
5answers
98 views
Git squash all commits into a single commit
How do you squash your entire repository down to the first commit?
I can rebase to the first commit, but that would leave me with 2 commits.
Is there a way to reference the commit …
2
votes
1answer
66 views
Why do I get conflicts with git rebase -p -i ?
I'm using
git rebase -p -i SHA1^
And moving a single commit backwards in time to just after SHA1. The commit consists of a WAV file, so there's no way this is breaking my code …
2
votes
2answers
159 views
Git rebase continually fails and requires manual merge intervention
I am having an issue with rebasing from master on to a 'deploy' branch within one of my repositories.
My repo is setup as follows:
master - of course, the main branch
deploy - a …
4
votes
1answer
111 views
How to merge two branches without a common ancestor?
I have started using Git in the middle of my project, where the first two commits are just some initial settings (.gitignore and .gitattributes), and the third commit M2 adds the c …
3
votes
2answers
42 views
Rebasing dependent topic branches
I use a lot of local topic branches in git, and sometimes end up with dependencies between topic branches causing rebase problems. For example, with a structure like:
master ---&g …
1
vote
1answer
83 views
SVN to git … now git to SVN. So many conflicts …
Disclaimer: Things would be simpler had I known about git-svn at the start.
I had a large codebase in SVN, and crudely got it situated in git. Work life was very painful without …
6
votes
6answers
364 views
How to back up private branches in git
Hi all,
I have a local branch for day-to-day dev work in git. My workflow is:
Do stuff on local_branch, commit
Fetch origin/master
Rebase local_branch to catch up with new stuf …
1
vote
1answer
65 views
svn rebasing and history lost
We currently have 2 branches:
/repo/branch/current_version
/repo/branch/next_version
current_version is a branch where all developers currently works.
We starting a next versio …
0
votes
2answers
74 views
How exactly to do a Subversion pre-1.5 style merge?
I have to deal with Subversion 1.4 merges at the moment and have found this answer to a question, which exactly describes my problem. The actual question deals with git-style rebas …
0
votes
2answers
82 views
Is there a rebase (dll) command in linux/gcc?
On Windows, rebase changes the preferred load location for a dll and (I've read) can dramatically decrease application load time. Is there a similar concept on Linux and/or gcc?
4
votes
1answer
2k views
git rebase and git push: non-fast forward, why use?
I have a branch that should be available to other contributors and that should constantly stay up to date with the master.
Unfortunately, every time I do 'git rebase' and then try …
2
votes
2answers
96 views
Am I doing it wrong? Merging SVN changes from trunk into a git branch. Using merge --squash
We use branches to do our work and keep trunk pristine for the most part. Before merging my changes from my branch into trunk, I want to make sure that I've got the latest changes …
2
votes
5answers
283 views
Integrator workflow, Is fetch-rebase-push safe for remote repos?
I'm managing a git repo using the integrator work flow. In other words, I pull commits from my co-workers, and push them out to the blessed repo.
I'd like to keep the commit histo …
0
votes
1answer
120 views
Git, edit root commit for all branches
I have to rewrite the history of my repository because it contains some credentials. As I have to amend the root commit I followed the instructions from Git Faq. My problem is thou …
