fix config reading in tests
[git/dscho.git] / Documentation / git-merge-base.txt
blob07f78b4ae090a8d3d4b717dc64e84d6067218e5f
1 git-merge-base(1)
2 =================
4 NAME
5 ----
6 git-merge-base - Find as good common ancestors as possible for a merge
9 SYNOPSIS
10 --------
11 'git-merge-base' [--all] <commit> <commit>
13 DESCRIPTION
14 -----------
16 "git-merge-base" finds as good a common ancestor as possible between
17 the two commits. That is, given two commits A and B 'git-merge-base A
18 B' will output a commit which is reachable from both A and B through
19 the parent relationship.
21 Given a selection of equally good common ancestors it should not be
22 relied on to decide in any particular way.
24 The "git-merge-base" algorithm is still in flux - use the source...
26 OPTIONS
27 -------
28 --all::
29         Output all common ancestors for the two commits instead of
30         just one.
32 Author
33 ------
34 Written by Linus Torvalds <torvalds@osdl.org>
36 Documentation
37 --------------
38 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
40 GIT
41 ---
42 Part of the linkgit:git[7] suite