Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread David MacMahon
Hi, Arjen,

On Jan 30, 2015, at 1:15 AM, Arjen Markus wrote:

> the thing that has frustrated me using git is the fact that unlike subversion 
> and most other revision control systems I have used, things are arranged in 
> small steps.

This is a difference, to be sure, but I have grown to appreciate that git 
provides more fine grained control.

> For instance: “git fetch” only fetches the changes into the local repository, 
> it does not change the checked-out files. That happens in the “git merge” 
> step.

Isn't that great!  :-)

I generally prefer to fetch and merge in two distinct steps so I can examine 
the newly fetched changes before merging them.  That's harder to so with svn 
(lots of rdiff and rlog).

> (there is also the matter of explicitly adding files to the commit step – 
> another difference with subversion).

I first thought that was a weird and annoying extra step, but I have grown fond 
of this capability as well.  I often find myself with several files to commit, 
yet the changes are not all related.  Git makes it easy to commit only some of 
my modified files, so I can make each commit contain just the changes that I 
want to group together.  There's even "git add -p" which lets you pick and 
choose which changes within files should be added to the commit.  Talk about 
fine grained control!

Dave


--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Arjen Markus
Hi Phil,



Possibly, but at this stage I want to stick to the receipe :). I am beginning 
to understand what the steps are doing and I have no problem following the 
receipe as long as I understand what to expect – less chance of me getting 
frustrated about it.

Regards,

Arjen


From: Phil Rosenberg [mailto:p.d.rosenb...@gmail.com]
Sent: Friday, January 30, 2015 10:37 AM
To: Arjen Markus
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Glad it worked :)
I never used svn much so haven't much to  compare. But in that case I think git 
pull does both those jobs in one command. Perhaps there are other similar 
compound  commands that will speed things up for you

From: Arjen Markus<mailto:arjen.mar...@deltares.nl>
Sent: ‎30/‎01/‎2015 09:15
To: Phil Rosenberg<mailto:p.d.rosenb...@gmail.com>
Cc: PLplot development list<mailto:Plplot-devel@lists.sourceforge.net>
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Phil,



Well, that was easy enough – the thing that has frustrated me using git is the 
fact that unlike subversion and most other revision control systems I have 
used, things are arranged in small steps. For instance: “git fetch” only 
fetches the changes into the local repository, it does not change the 
checked-out files. That happens in the “git merge” step.



I will update the README.developers file to aid naïve users like myself with 
this git philosophy (there is also the matter of explicitly adding files to the 
commit step – another difference with subversion).



Regards,



Arjen




From: Phil Rosenberg [mailto:p.d.rosenb...@gmail.com]
Sent: Friday, January 30, 2015 9:58 AM
To: Arjen Markus; Alan W. Irwin
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

If you google git changing a remote's url, you should find the git 
documentation that should help and save you making a new clone. Sorry I can't 
paste a link as I'm sending this from my phone

From: Arjen Markus<mailto:arjen.mar...@deltares.nl>
Sent: ‎30/‎01/‎2015 08:39
To: Alan W. Irwin<mailto:ir...@beluga.phys.uvic.ca>; Phil 
Rosenberg<mailto:p.d.rosenb...@gmail.com>
Cc: PLplot development list<mailto:Plplot-devel@lists.sourceforge.net>
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Alan, Phil,



Right, that must be it. I was wondering why I was not asked for my password :(. 
Well, I will have to do the cloning process again then.



Thanks,



Arjen



> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please n

Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Phil Rosenberg
Glad it worked :)
I never used svn much so haven't much to  compare. But in that case I think git 
pull does both those jobs in one command. Perhaps there are other similar 
compound  commands that will speed things up for you

-Original Message-
From: "Arjen Markus" 
Sent: ‎30/‎01/‎2015 09:15
To: "Phil Rosenberg" 
Cc: "PLplot development list" 
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Phil,
 
Well, that was easy enough – the thing that has frustrated me using git is the 
fact that unlike subversion and most other revision control systems I have 
used, things are arranged in small steps. For instance: “git fetch” only 
fetches the changes into the local repository, it does not change the 
checked-out files. That happens in the “git merge” step. 
 
I will update the README.developers file to aid naïve users like myself with 
this git philosophy (there is also the matter of explicitly adding files to the 
commit step – another difference with subversion).
 
Regards,
 
Arjen



 
From: Phil Rosenberg [mailto:p.d.rosenb...@gmail.com] 
Sent: Friday, January 30, 2015 9:58 AM
To: Arjen Markus; Alan W. Irwin
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository
 
If you google git changing a remote's url, you should find the git 
documentation that should help and save you making a new clone. Sorry I can't 
paste a link as I'm sending this from my phone



From: Arjen Markus
Sent: ‎30/‎01/‎2015 08:39
To: Alan W. Irwin; Phil Rosenberg
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository
Hi Alan, Phil,
 
Right, that must be it. I was wondering why I was not asked for my password L. 
Well, I will have to do the cloning process again then.
 
Thanks,
 
Arjen
 
 
> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail. 
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail. --
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutoria

Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Arjen Markus
Hi Phil,



Well, that was easy enough – the thing that has frustrated me using git is the 
fact that unlike subversion and most other revision control systems I have 
used, things are arranged in small steps. For instance: “git fetch” only 
fetches the changes into the local repository, it does not change the 
checked-out files. That happens in the “git merge” step.



I will update the README.developers file to aid naïve users like myself with 
this git philosophy (there is also the matter of explicitly adding files to the 
commit step – another difference with subversion).



Regards,



Arjen



From: Phil Rosenberg [mailto:p.d.rosenb...@gmail.com]
Sent: Friday, January 30, 2015 9:58 AM
To: Arjen Markus; Alan W. Irwin
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

If you google git changing a remote's url, you should find the git 
documentation that should help and save you making a new clone. Sorry I can't 
paste a link as I'm sending this from my phone

From: Arjen Markus<mailto:arjen.mar...@deltares.nl>
Sent: ‎30/‎01/‎2015 08:39
To: Alan W. Irwin<mailto:ir...@beluga.phys.uvic.ca>; Phil 
Rosenberg<mailto:p.d.rosenb...@gmail.com>
Cc: PLplot development list<mailto:Plplot-devel@lists.sourceforge.net>
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Alan, Phil,



Right, that must be it. I was wondering why I was not asked for my password :(. 
Well, I will have to do the cloning process again then.



Thanks,



Arjen



> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Arjen Markus
Hi Phil,



No problem – I was hoping for such a solution, as it seems less error-prone.



Thanks,



Arjen




From: Phil Rosenberg [mailto:p.d.rosenb...@gmail.com]
Sent: Friday, January 30, 2015 9:58 AM
To: Arjen Markus; Alan W. Irwin
Cc: PLplot development list
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

If you google git changing a remote's url, you should find the git 
documentation that should help and save you making a new clone. Sorry I can't 
paste a link as I'm sending this from my phone

From: Arjen Markus<mailto:arjen.mar...@deltares.nl>
Sent: ‎30/‎01/‎2015 08:39
To: Alan W. Irwin<mailto:ir...@beluga.phys.uvic.ca>; Phil 
Rosenberg<mailto:p.d.rosenb...@gmail.com>
Cc: PLplot development list<mailto:Plplot-devel@lists.sourceforge.net>
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Alan, Phil,



Right, that must be it. I was wondering why I was not asked for my password :(. 
Well, I will have to do the cloning process again then.



Thanks,



Arjen



> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Phil Rosenberg
If you google git changing a remote's url, you should find the git 
documentation that should help and save you making a new clone. Sorry I can't 
paste a link as I'm sending this from my phone

-Original Message-
From: "Arjen Markus" 
Sent: ‎30/‎01/‎2015 08:39
To: "Alan W. Irwin" ; "Phil Rosenberg" 

Cc: "PLplot development list" 
Subject: RE: [Plplot-devel] Problem pushing changes to the repository

Hi Alan, Phil,
 
Right, that must be it. I was wondering why I was not asked for my password L. 
Well, I will have to do the cloning process again then.
 
Thanks,
 
Arjen



 
> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail. --
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-30 Thread Arjen Markus
Hi Alan, Phil,



Right, that must be it. I was wondering why I was not asked for my password :(. 
Well, I will have to do the cloning process again then.



Thanks,



Arjen




> -Original Message-
> From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca]
> Sent: Thursday, January 29, 2015 11:28 PM
> To: Phil Rosenberg
> Cc: Arjen Markus; PLplot development list
> Subject: Re: [Plplot-devel] Problem pushing changes to the repository
>
> On 2015-01-29 21:35- Phil Rosenberg wrote:
>
> > This is only a guess, but how are you accessing the repository? If
> you cloned it using the git:// address then I think this might be read only. 
> You need to
> access with ssh to push changes I think.
>
> @Arjen: if you log in to SF and look at
> <http://sourceforge.net/p/plplot/plplot/ci/master/tree/> you can confirm 
> Phil's last
> sentence for yourself; git:// access is read-only and ssh:// access is both 
> read and
> write.
>
> Alan
> __
> Alan W. Irwin
>
> Astronomical research affiliation with Department of Physics and Astronomy,
> University of Victoria (astrowww.phys.uvic.ca).
>
> Programming affiliations with the FreeEOS equation-of-state implementation for
> stellar interiors (freeeos.sf.net); the Time Ephemerides project 
> (timeephem.sf.net);
> PLplot scientific plotting software package (plplot.sf.net); the libLASi 
> project
> (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the 
> Linux Brochure
> Project (lbproject.sf.net).
> __
>
> Linux-powered Science
> __

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-29 Thread Alan W. Irwin
On 2015-01-29 21:35- Phil Rosenberg wrote:

> This is only a guess, but how are you accessing the repository? If
you cloned it using the git:// address then I think this might be read
only. You need to access with ssh to push changes I think.

@Arjen: if you log in to SF and look at 
 you can
confirm Phil's last sentence for yourself; git:// access is read-only
and ssh:// access is both read and write.

Alan
__
Alan W. Irwin

Astronomical research affiliation with Department of Physics and Astronomy,
University of Victoria (astrowww.phys.uvic.ca).

Programming affiliations with the FreeEOS equation-of-state
implementation for stellar interiors (freeeos.sf.net); the Time
Ephemerides project (timeephem.sf.net); PLplot scientific plotting
software package (plplot.sf.net); the libLASi project
(unifont.org/lasi); the Loads of Linux Links project (loll.sf.net);
and the Linux Brochure Project (lbproject.sf.net).
__

Linux-powered Science
__

--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


Re: [Plplot-devel] Problem pushing changes to the repository

2015-01-29 Thread Phil Rosenberg
This is only a guess, but how are you accessing the repository? If you cloned 
it using the git:// address then I think this might be read only. You need to 
access with ssh to push changes I think.
Phil

-Original Message-
From: "Arjen Markus" 
Sent: ‎29/‎01/‎2015 20:35
To: "PLplot development list" 
Subject: [Plplot-devel] Problem pushing changes to the repository

Hi everyone,
 
I made some changes to the Fortran bindings to support the new plmap* routines. 
This works fine – a clean comparison with the C x19 example. However, when I 
try to push the changes (after diligently following the receipe for our git 
workflow ;)), I get the message:
 
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
Does this have to do with wrong credentials? How can I solve this?
Regards,
Arjen
 
 
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail. --
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel


[Plplot-devel] Problem pushing changes to the repository

2015-01-29 Thread Arjen Markus
Hi everyone,



I made some changes to the Fortran bindings to support the new plmap* routines. 
This works fine - a clean comparison with the C x19 example. However, when I 
try to push the changes (after diligently following the receipe for our git 
workflow ;)), I get the message:



fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

Does this have to do with wrong credentials? How can I solve this?

Regards,

Arjen





DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel