Fast-forward term refer to DVCS merge technique.

learn more… | top users | synonyms

1
vote
0answers
20 views

Reproducible android builds with git with fast forward merges

I'm looking reproducibility between android system (AOSP) daily builds against repo's collections of git repositories and the impact of using fast-forward merges. The problem is that when doing daily ...
0
votes
1answer
76 views

git workflow for merging using fast-forward commits

I use git on several projects with many developers. My usual work flow is to branch locally for a specific feature/request, merge my changes to a local branch tracked upstream as a fast forward ...
0
votes
2answers
60 views

Git fast forward replaces entire repo deleting previous history

There is a repo on github named A. I cloned this repo to my local from github. The original repo A has a branch named 'a', which is at a previous version from A. There was a commit from the owner of ...
1
vote
1answer
146 views

Git status shows local branch ahead by X commits - should only be 1

I've been searching and trying the various solutions here on stack and other forums but can't seem to get this issue resolved. Git: Branch is ahead by X commits. Doesn't help doing git pull ...
1
vote
2answers
127 views

Git gives 'non-fast-forward updates' error even after 'git pull'

Github is the default repository for my project (just "origin" renamed to "github"). Something has happened so that "git push" causes a "non-fast-forward updates" error, even though "git push github ...
0
votes
1answer
91 views

Commit published twice: Merge remote-tracking branch 'origin'

I forked from a repository (upstream), then do my changes locally and push to my repo (origin). To add to this, I do most of my work at my console, and today I did some on the laptop. I pushed to ...
3
votes
2answers
340 views

How to allow remove remote branches at gitolite and forbid non fast forward

We need to allow developers: 1) to create topic branches and save them at remote repo. 2) Do changes. 3) Do merge to 'development' branch. 4) Remove topic branch (git push origin ...
0
votes
1answer
66 views

Dulwich: How to detect fast-forward?

As the title suggests, namely, how can I know if the remote branch is an ancestor of local branch and vice versa?
2
votes
1answer
1k views

Gerrit code review push to empty repo doesn't work

I installed and configured my own Gerrit server. I created a repository using the web gui for Gerrit. I am able to clone this empty repository succesfully using the "git" command, so the configuration ...
6
votes
1answer
559 views

What are the differences between `--squash` and `--no-ff --no-commit`?

Which one should one use to hide microcommits? Is the only difference between git merge --squash and git merge --no-ff --no-commit the denial of the other parents?
4
votes
2answers
202 views

What does it mean that a Git push can not be fast foward merged?

Can someone please provide a simple example of what would cause a Git push to a central repo to fail because a fast forward could not occur? What would the local repo vs the central repo's state need ...
1
vote
1answer
74 views

No-FF for merges from a long time ago

In our Git repository we have a few merges from branches that should have been merged with --no-ff but were not. These merges were made a long time ago. Is there any way to force/insert a commit as ...
3
votes
0answers
176 views

Monotouch - Fast Forward/Rewind Audio Stream

I'm using the Monotouch sample to play Audio file from a remote server (https://github.com/xamarin/monotouch-samples/tree/master/StreamingAudio), and I need to implement the Fast forward and Rewind ...
4
votes
5answers
343 views

How can I prevent non-fastforward pushes to selected branch(es) in git?

I would like to protect my git repository so only non master branches can be overwritten. Is there a way to protect only selected branches?
0
votes
2answers
105 views

Git fast forward is (strictly pointerwise) actually fast reverse? Terminology disambiguation for Git newbies

Git fast forward merge is FORWARD in terms of TIME. The pointer goes from older to newer commits. Example (by ffwd merge master pointer is moved from commit D to commit G): Before fast-forward ...
1
vote
3answers
46 views

Git: does ffwd merge preserves all topic branch commits?

Say we have this situation: master | A--B--B--D--E--F--G | test Then we merge test into master. Are commits E and F preserved in the new master ...
0
votes
2answers
438 views

Git pushing and pulling can't be “fast-forward”

I've got bonobo git server that's supposed to "handle syncing" among at least 2 machines, for now. It was working fine but lately I've ran into one big problem with it and a related second one with ...
0
votes
2answers
844 views

Aptana: Git merge without fast forward

how can i disable fast-forward for mergining branches in aptana 3 ? example: create/checkout a branch (foo) commit changes checkout master-branch merge with foo
25
votes
2answers
9k views

What is the difference between `git merge` and `git merge --no-ff`?

Using gitk log, I could not spot a difference between the two. How can I observe the difference (with a git command or some tool)?
2
votes
2answers
2k views

git rebase master then push origin branch results in non-fast-forward error

I am trying on working on my featureA branch while keeping it up-to-date with the master branch. Here is the scenario git clone ssh://xxx/repo git checkout -b featureA $ git add file.txt $ git ...
2
votes
2answers
328 views

Strategy For Keeping Git Feature Branches Up to Date

I like to keep my feature branches up to date with develop. Is there anything wrong with frequently doing "git merge --no-ff develop". And then at the end, running "git flow feature finish ...
1
vote
1answer
303 views

git: hook for fast-forward switch on branch change?

Is there a hook script available somewhere that would do a fast-forward merge on branch switch? I have a repository where there are multiple branches, and I have to work on several on them. After a ...
0
votes
2answers
225 views

Fast Forward and fastBackward with sound in ActionScript3, is it possible?

Is it possible to create functionality like fast forward and fast backward of given sound file that plays in swf with AtionScrip3 and how?
1
vote
1answer
740 views

How do pull no fast-forward in TortoiseGit

Since some people recommend no fast-fordward (--no-ff) on merges in Git, I wanted to do that. But I can't see where to check to enable that in the TortoiseGit GUI. Yes, I could do this from the ...
0
votes
3answers
47 views

Find all commits in a particular branch in GIT

This might be a repeated question but i didn't find exact answers. Lets say i have 2 branches br1 and br2 with 3 commits each. br1 commit a commit b commit c br2 commit d commit e commit f ...
0
votes
2answers
281 views

Git creates a merge commit although it performs a fast-forward merge

I'm merging a hotfix branch into master. When I do a simple git merge hotfix-2.09 the merge fast-forwards but I'm getting a 'merge branch "hotfix-2.09"' commit in the log. hotfixes 01 - 08 did not do ...
1
vote
2answers
569 views

Fast-forward branch in mercurial

For some reason, I have following situation: Now I want to get rid of default_2 and fast-forward default to rev 89. But when I do hg up -r default hg transplant 61:89 or hg transplant -b ...
2
votes
3answers
953 views

TSQL Parent > Child > Sub-Child duplication without cursor

I am creating a SQL 2008 R2 stored procedure to duplicate a row and all it's children. It's a 3-tiered setup with a Parent, Child and Sub-Child Given the ID of the parent I need to create a ...
3
votes
3answers
114 views

How do I show the files that where merged with a no fast-forward in Git?

I have two branches, and I am merging branch1 into branch2 with a no fast-forward. After the merge, I run the command 'git show', I only get the message that of the commit (which is the merge from ...
13
votes
3answers
13k views

How can I fast-forward a single git commit, programmatically?

I periodically get message from git that look like this: Your branch is behind the tracked remote branch 'local-master/master' by 3 commits, and can be fast-forwarded. I would like to be able to ...
278
votes
1answer
44k views

Why does git use fast-forward merging by default?

Coming from mercurial, I'm using branches to organize features. Naturally I want to see this work-flow in my history as well. I started my new project using git and finished my first feature. While ...
56
votes
3answers
8k views

Can I make fast forwarding be off by default in git?

I can't really ever think of a time when I would use git merge rather than git rebase and not want to have a commit show up. Is there any way to configure git to have fast forwarding off by default? ...