Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [nattable-dev] git rebase

Hi,

you have to be carefull with using git rebase because you are changing the history.

http://changelog.complete.org/archives/586-rebase-considered-harmful

So IMHO we should consider using git pull and only rebase in special cases.

Greez,
Dirk


On Wed, Jul 18, 2012 at 4:20 PM, Edwin Park <esp@xxxxxxxxxx> wrote:
Thanks Stephan,

I didn't know about this command. When I was using git-svn I was always doing git svn fetch + git svn rebase (because there is no git svn pull), but now that we are in git I have just been doing git pull. I do see now that git pull --rebase is often more appropriate for the way we work.

Thanks for the info!
Edwin


On Tue, Jul 17, 2012 at 4:13 PM, Stephan Wahlbrink <sw@xxxxxxxxxxxx> wrote:
Hi all,

you are all familiar with 'git rebase' when fetching/pulling changes from eclipse and "join" them with your local changes?

For motivation see e.g.
http://stackoverflow.com/questions/2472254/when-should-i-use-git-pull-rebase

For short instructions and demo see e.g.
http://gitready.com/advanced/2009/02/11/pull-with-rebase.html

(git pull --rebase = git fetch + git rebase)

Ciao,
Stephan
_______________________________________________
nattable-dev mailing list
nattable-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/nattable-dev


_______________________________________________
nattable-dev mailing list
nattable-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/nattable-dev



Back to the top