Re: [fossil-users] artifacts received

2014-07-06 Thread Andy Bradford
Thus said B Harder on Sun, 06 Jul 2014 14:40:58 -0700: > myhost$ fossil pull http://joeb...@fossil-scm.org --http-trace > Round-trips: 1 Artifacts sent: 0 received: 0 > Pull finished with 424 bytes sent, 612 bytes received It seems that I gave you the wrong option. Please try: fossil pull --h

Re: [fossil-users] artifacts received

2014-07-06 Thread Andy Bradford
Thus said B Harder on Sun, 06 Jul 2014 14:40:58 -0700: > myhost$ fossil pull > Pull from http://joeb...@fossil-scm.org > Round-trips: 1 Artifacts sent: 0 received: 74 > Pull finished with 442 bytes sent, 2645 bytes received > myhost$ fossil pull http://joeb...@fossil-scm.org --http-trace > Roun

Re: [fossil-users] artifacts received

2014-07-06 Thread B Harder
myhost$ fossil pull Pull from http://joeb...@fossil-scm.org Round-trips: 1 Artifacts sent: 0 received: 74 Pull finished with 439 bytes sent, 2645 bytes received myhost$ fossil pull http://joeb...@fossil-scm.org --http-trace Round-trips: 1 Artifacts sent: 0 received: 0 Pull finished with 425 b

Re: [fossil-users] remote-url of repo points to itself somehow (did I do this?)

2014-07-06 Thread Michai Ramakers
On 22 June 2014 01:18, Michai Ramakers wrote: > Hello, > > a pretty vague report/question: I recently had the situation where a > repo existed on host B, wich remote-url pointing to a repo on host A. > > On host A, somehow the remote-url of the local repo was pointing > (using 'file:///...') to it

Re: [fossil-users] Automating a clone - any other way than the URL to pass in password?

2014-07-06 Thread Matt Welland
Thanks for the replies. On Linux I'll just use the url password and do: echo y|fossil clone I'm sure Google knows the equivalent magic invocation for windows. On Jul 5, 2014 10:19 AM, "Matt Welland" wrote: > I'd like to automate a clone but I think I'd prefer the password not be in > the

Re: [fossil-users] artifacts received

2014-07-06 Thread Ron Wilson
On Sun, Jul 6, 2014 at 3:54 AM, Stephan Beal wrote: > > Can't answer, but i see it only with 'pull', not with 'update'. > > [odroid@host:~/fossil/fossil]$ f pull > Pull from http://step...@fossil-scm.org/index.html > Round-trips: 1 Artifacts sent: 0 received: 74 > Pull finished with 453 bytes

Re: [fossil-users] Automating a clone - any other way than the URL to pass in password?

2014-07-06 Thread Ron Wilson
On Sun, Jul 6, 2014 at 6:12 AM, Stephan Beal wrote: > Looking at the code (getpass() in user.c)... i'm not sure. It uses > getc(stdin) to reach char by char, but doesn't seem to do anything unusual > with the stream. Ah... that's the Windows/Android impl. On unix it uses > getpass(3) (unistd.h),

Re: [fossil-users] artifacts received

2014-07-06 Thread Andy Bradford
Thus said B Harder on Sat, 05 Jul 2014 11:32:24 -0700: > What are the "artifacts received" below? Is these administrative, or > is there something else at play? That's interesting. I've seen this before with my clone of fossil and I've often wondered the same thing, but it doesn't app

Re: [fossil-users] Automating a clone - any other way than the URL to pass in password?

2014-07-06 Thread Stephan Beal
On Sun, Jul 6, 2014 at 12:05 PM, j. van den hoff wrote: > ps: question to ML: it seems that doing the above via a shell "here > document" (just redirecting user input to the `fossil clone' queries > to the script via `< is not recognized by fossil. why not? > Looking at the code (getpass() in us

Re: [fossil-users] Automating a clone - any other way than the URL to pass in password?

2014-07-06 Thread j. van den hoff
On Sat, 05 Jul 2014 19:19:54 +0200, Matt Welland wrote: I'd like to automate a clone but I think I'd prefer the password not be in the URL. The concern is that the password in the URL might be visible in the webserver logs. First, is this a legit concern? Second, how best to do this? AFAIC

Re: [fossil-users] artifacts received

2014-07-06 Thread Stephan Beal
On Sat, Jul 5, 2014 at 8:32 PM, B Harder wrote: > What are the "artifacts received" below? Is these administrative, or > is there something else at play? > > myhost$ fossil pull > Pull from http://joeb...@fossil-scm.org > Round-trips: 1 Artifacts sent: 0 received: 74 > Pull finished with 442 b

Re: [fossil-users] Automating a clone - any other way than the URL to pass in password?

2014-07-06 Thread Stephan Beal
On Sat, Jul 5, 2014 at 7:19 PM, Matt Welland wrote: > I'd also like to automatically say "Y" to the question of storing the > password and I don't see any way to do that either. > For apps which take their input from stdin (like fossil) it's normally possibly to do that like: echo "Y" | ... the