Re: [fossil-users] Help messages in add.c

2017-07-14 Thread Johan Kuuse
On Thu, Jul 13, 2017 at 6:31 PM, jungle Boogie wrote: > On 6 June 2017 at 06:50, Johan Kuuse wrote: >> Hi, >> >> The following commands, executed without any arguments, are mute: >> >> f add >> f rm >> f delete >> f forget >> >> IMHO, they should show a

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread jungle Boogie
On 14 July 2017 at 03:21, Richard Hipp wrote: > On 7/14/17, Olivier R. wrote: >> So what is the recipe to move a check-in to another branch? > > I (the original author of Fossil) always use web-based UI for this. > First run "fossil ui" to get the web

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread Olivier R.
Le 14/07/2017 à 13:55, Richard Hipp a écrit : fossil update trunk fossil merge --cherrypick $branch ... test fossil commit Thank you. Olivier ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread Richard Hipp
On 7/14/17, jungle Boogie wrote: > > The command to edit commits after they've been commited is amend: > https://www.fossil-scm.org/index.html/help?cmd=amend > > example: > fosisl amend abc123 --tag fossiliscool > > > As you see, that command allows you to edit quite a

Re: [fossil-users] Help messages in add.c

2017-07-14 Thread Venkat Iyer
Consider me old fashioned, but the current behavior seems more in line with traditional unix (read sysv) commands. Usage is when when the user made an error or explicitly asked for help. The question would then be: Is "fossil cat" followed by a) zero or more paths b) one or more paths I

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread jungle Boogie
On 14 July 2017 at 08:21, Richard Hipp wrote: > On 7/14/17, jungle Boogie wrote: >> >> The command to edit commits after they've been commited is amend: >> https://www.fossil-scm.org/index.html/help?cmd=amend >> >> example: >> fosisl amend abc123 --tag

Re: [fossil-users] Test message after IP address change

2017-07-14 Thread Andy Bradford
Thus said Richard Hipp on Wed, 12 Jul 2017 06:25:56 -0400: > There are reports that messages are not getting throught to this list > now. The current message is an attempt to reproduce the problem. This is a reply to verify. Andy -- TAI64 timestamp: 400059699f27

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread Richard Hipp
On 7/14/17, Olivier R. wrote: > Le 14/07/2017 à 12:21, Richard Hipp a écrit : >> On 7/14/17, Olivier R. wrote: >>> So what is the recipe to move a check-in to another branch? >> >> I (the original author of Fossil) always use web-based UI for this. >>

Re: [fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread Richard Hipp
On 7/14/17, Olivier R. wrote: > So what is the recipe to move a check-in to another branch? I (the original author of Fossil) always use web-based UI for this. First run "fossil ui" to get the web interface going. Then find the check-in you want to move and click on its

[fossil-users] How to move a check-in from a branch to another one?

2017-07-14 Thread Olivier R.
Hello everyone, On this page we can read: “Fossil keeps all check-ins on a single DAG. Branches are identified with tags. This means that check-ins can be freely moved between branches simply by altering their tags.” So I tried,