Changing the starting point of a branch in a Version Control System.
0
votes
1answer
17 views
In Mercurial, how to combine unrelated repositories, leaving only one root?
I have a 4 versions of a project. Versions 1-3 were "prototypes" that were originally not under source control (they exist as separate directories in the filesystem). Version 4 has been under source ...
1
vote
0answers
43 views
Duplicate commits in git branch after rebase / pull request workflow on bitbucket
I am confused by a git issue we're encountering. We have 10 developers on the project, each with their own branch. Developer branches are merged into two "feature" branches named develop_frontend and ...
2
votes
1answer
26 views
Delete some commits from remote repository assuming I'm the only person working on it
I'm trying to free up memory space on my server's hard drive. I've huge amounts of repositories and would like to delete many commits from the repos. So I've been trying to do that with git rebase -i ...
0
votes
1answer
47 views
Easy and Fast Git rebase/reword
I'm working alone on a Git repository for months. I'd like now to push my commits to a public repository, however, I'd like to improve the commit messages (mainly translate them to English).
I know I ...
2
votes
2answers
76 views
Git - Merge vs rebase
I have had a look at git rebase vs git merge
But I'd like to be sure about which solution to choose in this case :
I want to implement a new feature on Master so i branch it to a new Feature branch.
I ...
2
votes
1answer
49 views
change previous commit message after squash, not pushed
My scenario: I tried squashing 3 commits, the messages from 2 got combined with the last commit before branching, I want to remove the dummy commit messages.
(Sorry the samples below aren't direct ...
2
votes
1answer
39 views
Git: push for teamwork, then rebase for integration
I am working on a project managed with Git with about 20 people divided into teams. The project managers require that all of the working branches are not just merged into master, but are rather ...
1
vote
2answers
28 views
Delete some pushed commits after rebasing
In doing some git rebasing I got myself twisted around. In the graph below I want stable to point at commit 6016f6 and I want all the other commits "above" 6016f6 to go away. In other words, I have ...
1
vote
1answer
27 views
Does git rebase update commits in other local branches?
I know I can test this experimentally, but having discussion would be nice. If I have a local head on (local branch) master that has diverged from the remote master, I tend to do a git pull --rebase ...
0
votes
1answer
42 views
non-interactive git squash/rebase all into current branch heads
What is the easiest way to rebase a git repository such that only the heads of current branches remain in tact, and all else is squashed? Preferably a non-interactive solution that I can apply to ...
1
vote
1answer
63 views
programatically use git rebase -i
I wrote a node module that uses git to make a bunch of commits from time to time. Considering the commits are better if grouped into one single commit, I'd like to use "git rebase -i" to squash them ...
1
vote
1answer
35 views
Git breaks merge commit, if won't push it and execute pull with rebase option
Sometimes things that I don't want to happen, happens with my repository. Here is one of scenarios that I want to avoid but don't know the best approach:
git init --bare bare.git;
git clone bare.git/ ...
0
votes
0answers
29 views
git-dulwich:how to merge or rebase?
I try to make a website to provide some server, such as collaborative writing at some purposed aims. But I will not to create the same wheel. So I choose git as VCS(version control system) by using ...
0
votes
3answers
41 views
Git: Rebase a complete project including branch structure
In a project which is to be transferred from Mercurial to git, a Mercurial-specific file (pretty early in the history) needs to be rewritten (X in the diagram below). After this step, the whole ...
4
votes
1answer
44 views
git workflow, and merging changes from master into branches
Having struggled with SVN I was told I should check out GIT, as the branches would be ideal for the workflow I am trying to achieve. I have been muddling along and think I have the basics of GIT ...
2
votes
2answers
40 views
Git rebase - remote deletes a file and local rebase applies changes to another file
Simple scenario:
Remote:
git init
touch a.py && git add a.py && git commit -am "Add a.py"
touch b.py && git add b.py && git commit -am "Add b.py"
Local:
git clone ...
0
votes
1answer
34 views
What exact range of revisions does git rebase --preserve-merges use?
I want to know, if you use
git rebase --preserve-merges
what is the exact list of commits that rebase attempts to play back.
To be more concrete, say I have topic and master branches. Previously ...
0
votes
1answer
42 views
How to change the specific string throughout all git message commits?
I want to grep and change specific string throughout all messages that are pushed to Github. Is it possible? How?
I know how to change last message bye git commit --amend but I want to change all ...
0
votes
2answers
23 views
“Importing” changes from a branch to a rebased branch with git
I've been working on a project foo that is a fork of another project bar, doing branch and so on. I'd like now to offer my changes to the original project too.
Firstly I have set up things for the ...
0
votes
1answer
30 views
how to merge different commit in git log history
let's say we have commits 1->2->3->4->5
I thought the history might be too long, I want the log to merge 1, 2 and 3 into one, say, 1'->2->3->4->5
how can I do this, should I use rebase? it seems that ...
0
votes
1answer
54 views
Rebasing all unmerged commits
I often find myself willing to rebase (interactively) all commits of my current working branch that are not merged to master. How do I accomplish this?
A solution based solely on git ...
1
vote
1answer
51 views
Git: How to rebase and squash commits from branch to master?
I'm trying to rebase and squash all my commits from current branch to master. Here is what I'm trying to do:
git checkout -b new-feauture
make a couple of commits, after it I was trying:
git ...
2
votes
1answer
29 views
How to recover a merge commit after a rebase on the same commit?
Suppose this:
mkdir test; cd test
echo "1" > file1; git init; git add .; git commit -m "initial - file 1" # 1st commit on master
echo "2" > file2; git add .; git commit -m "file 2" ...
2
votes
2answers
157 views
How to achieve `git --no-ff --ff-only` which is not allowed
As part our rebase-heavy workflow, I am hoping to use a merge on the master branch. In particular I want to merge only when the topic branch has been rebased onto the most recent master commit thereby ...
6
votes
2answers
142 views
What git commit practice is better?
I truly believe that to have one commit on one issue is a good practice(I'm sure I read it somewhere at article like: "Best practices") but today I was surprised.
I'm trying to work in a such way:
...
2
votes
3answers
60 views
Is git pull --rebase safe if you are in a centralized model and never push force?
There's a lot of git questions on the safety of rebase and there seems to be consensus that as long as you remember that rewriting public history is rude, you should be safe, i.e. if none of the ...
1
vote
1answer
35 views
Moving git commits on public master to an existing branch
I have a git repo with public master and develop branches. I committed to master when I should have committed to develop. I understand that I can move the commits from master to develop with the ...
0
votes
0answers
21 views
Git alias take multiple files in merge
Often we have to merge a Linq2Sql DBML file and its usually just easier to take whatever was changed upstream and redo you're changes on top of that, as the file usually has the order of its elements ...
0
votes
3answers
86 views
Git sync changes with remote master
I pushed some changes to my remote Git master branch from another location, then on my local master repository I did some changes which edited some files and deleted others and now I have to merge ...
2
votes
4answers
139 views
can't push to branch after rebase
We use git and have a master branch and developer branches. I need to add a new feature and then rebase the commits to master, then push master to CI server.
The problem is that if I have conflicts ...
4
votes
1answer
46 views
How do I interactively rebase a git topic branch in isolation without counting commits?
If I have branches master and topic like so:
A -- B -- C -- D (master)
\
W -- X -- Y -- Z (topic)
And I need to manipulate the commits on 'topic' with various fixups, squashes, amends, ...
0
votes
1answer
26 views
Unexpected error when rebasing with git from a branch to another branch, some files seems to be modified during the process
I have unexpected errors when trying rebasing a git branch on another.
Given two git branch A and B, and base_commit the common commit for these two branches in the history.
A is ahead of base_commit ...
0
votes
0answers
19 views
Git rebase upstream [duplicate]
If I download a branch off of GitHub via the zip link so it has no .git directory is it possible to initialize a new git, add the github as an upstream source and track/rebase/merge my branches to ...
2
votes
1answer
78 views
difference between 'git svn rebase' and 'git rebase trunk'
I am using git-svn for my project.
What is the difference between git svn rebase and git rebase trunk?
Is git svn rebase run on master basically the same as git rebase trunk run on master?
1
vote
3answers
73 views
How to git rebase when the commit history is not straight but merged from several programmer
I have a commit history like:
, and I want it to be something like . EDIT: history starts at bottom, on top are newer commits.
I'd like to rebase/squash all these commits onto "here". Or the one just ...
3
votes
0answers
134 views
Git pull --rebase converting spaces to tabs
This problem is driving me mad. Using Git with Github.
I'm working on one particular file using spaces instead of tabs. I always ensure that I change all tab indents to spaces. Diffs confirm that ...
0
votes
3answers
75 views
Git New Master Branch
I have several old branches that have been merged to the master branch. I want to start fresh, i.e, I want to delete all the previous branches except the master branch. The master branch will be the ...
1
vote
2answers
63 views
git rebase a single commit
Is there a way to rebase a single commit from a branch onto another branch?
So I have
-- -- -- -- -- (Master)
\
-- -- -- -- -- XX (Feature-branch)
and all I want to do ...
2
votes
1answer
48 views
how to rebase these complicated merged commits with git
Currently I have this complicated merged commits tree :
* 36cd4ff merge commit to rebase 12 (master,origin/master,HEAD)
|\
| * f8d22cf merge commit to rebase 11
| |\
| | * 4381ba4 merge ...
1
vote
1answer
39 views
Pull commits on repo post-rebase
I'm looking for a simple way to pull in additional commits after rebasing or a good reason to tell someone not to rebase.
Essentially we have a project, crons. I make changes to this frequently, and ...
0
votes
2answers
84 views
git cannot squash commits
I cannot squash commits with git rebase -i command, getting the following error message.
error: could not apply 3ad5c7b...
When you have resolved this problem run "git rebase --continue".
If you ...
2
votes
3answers
95 views
Git rebase subtree
Suppose I have the following scenario:
o (master)
/ o--o (WIP1)
/ /
o--o--o--o--o--o (WIP2)
(X) \
o--o (WIP3)
Is there a git command which creates a new ...
0
votes
1answer
73 views
Best way to rebase using SVN and Intellij IDEA (12)
I often stuck rebasing a branch with our trunk, mostly if the trunk brings a lot of changes. I personally prefer git but my company is using svn here.
Can anyone share his experience how to rebase ...
0
votes
1answer
42 views
Rebasing multiple branches simulteniously
First : In my case I am the only developer and pull, merge, etc.conflicts with other developers are not an issue at the moment.
I have a branch three that looks something like that. I have one master ...
4
votes
1answer
97 views
Git: How to fix commit during rebase
I came across the following problem:
During git rebase one of automatically resolved commits has an error, i.e. as a result of automatic resolution, a function declaration was introduced for the ...
0
votes
2answers
61 views
Folding Mercurial changesets without altering history
Is there a way to collapse a few sequential Mercurial changesets into a tree view with a single description while maintaining full history? Kind of like rebasing, but displayed so that no history is ...
0
votes
1answer
117 views
how to enable hg rebase
I added these lines to hgrc in my .hg folder:
[extension]
rebase =
but hg rebase still returns an error: Unknow command 'rebase'.
It may be a dumb question but do I need to include the path to ...
0
votes
1answer
117 views
How to use git rebase properly?
I currently use git the following way:
clone, fetch repo
create topic branch for specific issue
do some commits on it
checkout master branch
merge topic branch to master
push new master branch
...
1
vote
1answer
299 views
How do you Rebase an immutable changeset with Mercurial?
I'm trying to rebase some changes I pulled in to my local machine. I'm getting the error:
abort: can't rebase immutable changeset 110e73ed65a4
(see hg help phases for details)
And I get the same ...
0
votes
1answer
149 views
How to delete git commit history?
I want to clean up my commit history by removing all the previous commits and just keeping the latest one. How can I do that in git ? I did try
git rebase -i ..but that seems to end in blood where I ...
