Skip to content

Commit

Permalink
[PATCH] Rename the 'fredrik' merge strategy to 'recursive'.
Browse files Browse the repository at this point in the history
Otherwise we would regret when Fredrik comes up with another merge
algorithm with different pros-and-cons with the current one.

Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Fredrik Kuivinen authored and Junio C Hamano committed Sep 13, 2005
1 parent f88ed17 commit e4cf17c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ git-mailinfo
git-mailsplit
git-merge
git-merge-base
git-merge-fredrik
git-merge-index
git-merge-octopus
git-merge-one-file
git-merge-recursive
git-merge-resolve
git-merge-stupid
git-mktag
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ SCRIPT_PERL = \
git-rename.perl git-shortlog.perl

SCRIPT_PYTHON = \
git-merge-fredrik.py
git-merge-recursive.py

# The ones that do not have to link with lcrypto nor lz.
SIMPLE_PROGRAMS = \
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions git-merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ usage () {
die "git-merge [-n] [-s <strategy>]... <merge-message> <head> <remote>+"
}

# all_strategies='resolve fredrik stupid octopus'
# all_strategies='resolve recursive stupid octopus'

all_strategies='fredrik octopus resolve stupid'
all_strategies='recursive octopus resolve stupid'
default_strategies='resolve octopus'
use_strategies=

Expand Down

0 comments on commit e4cf17c

Please sign in to comment.