all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* vc-diff and tramp
@ 2008-08-11 10:01 Petteri
  2008-08-11 19:00 ` Michael Albinus
  0 siblings, 1 reply; 6+ messages in thread
From: Petteri @ 2008-08-11 10:01 UTC (permalink / raw)
  To: help-gnu-emacs

Hello!

I am trying to use vc-diff command over files which I am accessing over
tramp, but all I get is error message in other window stating

/bin/sh: vcdiff: not found

I also get this in the minibuffer:
Running vcdiff -q   -c SCCS/s.test.c...FAILED (status 127)

Is there a way to get vc-diff to work over tramp (ssh)?

-- 
 ___.  /     \  .___
 "Y/|\ | 0 o / /|\Y"
   '^^V  /|\ 'v'^^'





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: vc-diff and tramp
  2008-08-11 10:01 vc-diff and tramp Petteri
@ 2008-08-11 19:00 ` Michael Albinus
  2008-08-12 20:34   ` Petteri
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Albinus @ 2008-08-11 19:00 UTC (permalink / raw)
  To: Petteri; +Cc: help-gnu-emacs

Petteri <petteri@gmail.com> writes:

> Hello!

Hi,

> I am trying to use vc-diff command over files which I am accessing over
> tramp, but all I get is error message in other window stating
>
> /bin/sh: vcdiff: not found
>
> I also get this in the minibuffer:
> Running vcdiff -q   -c SCCS/s.test.c...FAILED (status 127)
>
> Is there a way to get vc-diff to work over tramp (ssh)?

Which Emacs version / Tramp version are you running?

Best regards, Michael.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: vc-diff and tramp
  2008-08-11 19:00 ` Michael Albinus
@ 2008-08-12 20:34   ` Petteri
  2008-08-14 19:31     ` Michael Albinus
  0 siblings, 1 reply; 6+ messages in thread
From: Petteri @ 2008-08-12 20:34 UTC (permalink / raw)
  To: Michael Albinus; +Cc: help-gnu-emacs

Michael Albinus kirjoitti ma 11. elokuuta 2008 21:00:01:
> Petteri <petteri@gmail.com> writes:
> 
> > Hello!
> 
> Hi,
> 
> > I am trying to use vc-diff command over files which I am accessing over
> > tramp, but all I get is error message in other window stating
> >
> > /bin/sh: vcdiff: not found
> >
> > I also get this in the minibuffer:
> > Running vcdiff -q   -c SCCS/s.test.c...FAILED (status 127)
> >
> > Is there a way to get vc-diff to work over tramp (ssh)?
> 
> Which Emacs version / Tramp version are you running?

I am using Emacs snapshot from http://emacs.orebokech.com/ which is
23.0.60. Tramp version is 2.1.14. Vc-diff works ok when using it with
local files.

Petteri

-- 
 ___.  /     \  .___
 "Y/|\ | 0 o / /|\Y"
   '^^V  /|\ 'v'^^'





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: vc-diff and tramp
  2008-08-12 20:34   ` Petteri
@ 2008-08-14 19:31     ` Michael Albinus
  2008-08-15  7:37       ` Petteri
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Albinus @ 2008-08-14 19:31 UTC (permalink / raw)
  To: Petteri; +Cc: help-gnu-emacs

Petteri <petteri@gmail.com> writes:

> I am using Emacs snapshot from http://emacs.orebokech.com/ which is
> 23.0.60. Tramp version is 2.1.14. Vc-diff works ok when using it with
> local files.

I couldn't reproduce the problem in case of CVS; vc-diff runs fine on
remote files. Which backend do you use?

> Petteri

Best regards, Michael.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: vc-diff and tramp
  2008-08-14 19:31     ` Michael Albinus
@ 2008-08-15  7:37       ` Petteri
  2008-08-15  7:45         ` Michael Albinus
  0 siblings, 1 reply; 6+ messages in thread
From: Petteri @ 2008-08-15  7:37 UTC (permalink / raw)
  To: Michael Albinus; +Cc: help-gnu-emacs

Michael Albinus kirjoitti to 14. elokuuta 2008 21:31:55:
> Petteri <petteri@gmail.com> writes:
> 
> > I am using Emacs snapshot from http://emacs.orebokech.com/ which is
> > 23.0.60. Tramp version is 2.1.14. Vc-diff works ok when using it with
> > local files.
> 
> I couldn't reproduce the problem in case of CVS; vc-diff runs fine on
> remote files. Which backend do you use?
> 

Thanks for your input. I tried with CVS and it worked fine. I am working
working with bitkeeper, so the problem seems to be there. I'll try to
figure out if I can get it working.

Petteri

-- 
 ___.  /     \  .___
 "Y/|\ | 0 o / /|\Y"
   '^^V  /|\ 'v'^^'





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: vc-diff and tramp
  2008-08-15  7:37       ` Petteri
@ 2008-08-15  7:45         ` Michael Albinus
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Albinus @ 2008-08-15  7:45 UTC (permalink / raw)
  To: Petteri; +Cc: help-gnu-emacs

Petteri <petteri@gmail.com> writes:

> Thanks for your input. I tried with CVS and it worked fine. I am working
> working with bitkeeper, so the problem seems to be there. I'll try to
> figure out if I can get it working.

Check for `call-process' and `start-process'. These functions do not
support remote files; `process-file' and `start-file-process' must be
used instead.

> Petteri

Best regards, Michael.





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-08-15  7:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-11 10:01 vc-diff and tramp Petteri
2008-08-11 19:00 ` Michael Albinus
2008-08-12 20:34   ` Petteri
2008-08-14 19:31     ` Michael Albinus
2008-08-15  7:37       ` Petteri
2008-08-15  7:45         ` Michael Albinus

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.