Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added example in document for settings in git and fossil. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
500150bfc88ab234dd7d8c5a83443c91 |
User & Date: | peter.spjuth@gmail.com 2011-05-10 21:51:52.000 |
Context
2011-05-10
| ||
22:40 | Added balloon help on toolbuttons. Rearranged images. check-in: 0fbbd7316a user: peter.spjuth@gmail.com tags: trunk | |
21:51 | Added example in document for settings in git and fossil. check-in: 500150bfc8 user: peter.spjuth@gmail.com tags: trunk | |
2011-05-09
| ||
00:09 | Use mouse dragging to set alignment. check-in: e36b91c7f9 user: peter.spjuth@gmail.com tags: trunk | |
Changes
Changes to doc/revision.txt.
︙ | ︙ | |||
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | For Subversion the arguments to -r are standard version numbers just like its -r option. If a revision is a negative integer, the log is searched backwards for earlier versions. E.g. -1 gives the second to last version. <ul>Git</ul> For Git -r <rev> is passed to show, as in "git show <rev>:<file>". <ul>Fossil</ul> For Fossil -r <rev> is passed to finfo, as in "fossil finfo -p <file> -r <rev>". <ul>Mercurial</ul> For Mercurial -r works as in "hg cat -r". <ul>Bazaar</ul> | > > > > > > > | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | For Subversion the arguments to -r are standard version numbers just like its -r option. If a revision is a negative integer, the log is searched backwards for earlier versions. E.g. -1 gives the second to last version. <ul>Git</ul> For Git -r <rev> is passed to show, as in "git show <rev>:<file>". <pre>git config --global merge.tool eskil</pre> <pre>git config --global mergetool.eskil.cmd 'eskil -fine -a $BASE -o $MERGED $REMOTE $LOCAL'</pre> <pre>git config --global diff.tool eskil</pre> <pre>git config --global difftool.eskil.cmd 'eskil $LOCAL $REMOTE'</pre> <ul>Fossil</ul> For Fossil -r <rev> is passed to finfo, as in "fossil finfo -p <file> -r <rev>". <pre>fossil settings gmerge-command 'eskil -fine -a "%baseline" "%merge" "%original" -o "%output"' -global</pre> <ul>Mercurial</ul> For Mercurial -r works as in "hg cat -r". <ul>Bazaar</ul> |
︙ | ︙ |
Added mergetest-fossil.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh # Build up a merge conflict in fossil fossil init apa.fossil mkdir apa_fossil cd apa_fossil fossil open ../apa.fossil fossil settings gmerge-command 'eskil -fine -a "%baseline" "%merge" "%original" -o "%output"' cp ../tests/ancestor.txt a.txt fossil add a.txt fossil commit -m a fossil branch new b trunk fossil update b cp ../tests/right.txt a.txt fossil commit -m r fossil update trunk cp ../tests/left.txt a.txt fossil commit -m l fossil update b #fossil merge trunk #fossil commit -m "Merge from trunk" |
Added mergetest-git.sh.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh # Build up a merge conflict in git mkdir apa_git cd apa_git git init cp ../tests/ancestor.txt a.txt git add a.txt git commit -m a git checkout -b b cp ../tests/right.txt a.txt git commit -am r git checkout master cp ../tests/left.txt a.txt git commit -am l git checkout b #git merge master #git mergetool #git commit -am m |