[Sugar-devel] GIT.sugarlabs.org changes?

2010-10-30 Thread George Hunt
I have 2 projects that I have been pushing git commits to  for almost a
year.  In one I created a new branch, and was concerned that my local change
was preventing the successful "git push".  But the other project has no
structural changes, and still gets the response "fatal: the  remote end hung
up unexpectedly" -- which I see has been a source of lots of headaches for
the inner circle.

Should I just wait for 6 hours, and try again? How to proceed?

George
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-10-30 Thread Aleksey Lim
On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> I have 2 projects that I have been pushing git commits to  for almost a
> year.  In one I created a new branch, and was concerned that my local change
> was preventing the successful "git push".  But the other project has no
> structural changes, and still gets the response "fatal: the  remote end hung
> up unexpectedly" -- which I see has been a source of lots of headaches for
> the inner circle.
> 
> Should I just wait for 6 hours, and try again? How to proceed?

Check if:

* `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation request.."
* `git config remote.origin.url` output is equal to particular push link
  on your project web page on git.sl.o

-- 
Aleksey
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-10-30 Thread George Hunt
Hi Aleksey,

Thanks for the response.

The ssh step fails.  Trying ssh -vvv gitori...@git.sugarlabs.org indicates
that the negotiation proceeds in what looks to be a normal manner, until the
point where the client determines that public key method is authorized, and
client is offering my public  key, and the next response is "connection
closed".


debug1: Next authentication method: publickey
debug1: Offering public key:
debug3: send_pubkey_test
debug2: we sent a publickey packet, wait for reply
Connection closed by 140.211.167.221


I guessed that the server has forgotten my public key, so I uploaded it
again. I don't know if it is related, but the listserve forgot that I was
receiving the "digest" form of the list on Oct 16 or so.

After the upload still no luck -- though there may be some form of
authorization required and/or delay built in, since when I first uploaded my
public key last year, it didn't work for at least a day.

George

On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim  wrote:

> On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > I have 2 projects that I have been pushing git commits to  for almost a
> > year.  In one I created a new branch, and was concerned that my local
> change
> > was preventing the successful "git push".  But the other project has no
> > structural changes, and still gets the response "fatal: the  remote end
> hung
> > up unexpectedly" -- which I see has been a source of lots of headaches
> for
> > the inner circle.
> >
> > Should I just wait for 6 hours, and try again? How to proceed?
>
> Check if:
>
> * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation request.."
> * `git config remote.origin.url` output is equal to particular push link
>  on your project web page on git.sl.o
>
> --
> Aleksey
>
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-10-31 Thread Aleksey Lim
On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> Hi Aleksey,
> 
> Thanks for the response.
> 
> The ssh step fails.  Trying ssh -vvv gitori...@git.sugarlabs.org indicates
> that the negotiation proceeds in what looks to be a normal manner, until the
> point where the client determines that public key method is authorized, and
> client is offering my public  key, and the next response is "connection
> closed".
> 
> 
> debug1: Next authentication method: publickey
> debug1: Offering public key:
> debug3: send_pubkey_test
> debug2: we sent a publickey packet, wait for reply
> Connection closed by 140.211.167.221
> 

"Connection closed" seems suspiciously. We had problem w/ blacklisting
of some IPs.

Can you try to ssh connect from different IP?

(I'm CCing it to systems@)

> I guessed that the server has forgotten my public key, so I uploaded it
> again. I don't know if it is related, but the listserve forgot that I was
> receiving the "digest" form of the list on Oct 16 or so.
> 
> After the upload still no luck -- though there may be some form of
> authorization required and/or delay built in, since when I first uploaded my
> public key last year, it didn't work for at least a day.
> 
> George
> 
> On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim  wrote:
> 
> > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > I have 2 projects that I have been pushing git commits to  for almost a
> > > year.  In one I created a new branch, and was concerned that my local
> > change
> > > was preventing the successful "git push".  But the other project has no
> > > structural changes, and still gets the response "fatal: the  remote end
> > hung
> > > up unexpectedly" -- which I see has been a source of lots of headaches
> > for
> > > the inner circle.
> > >
> > > Should I just wait for 6 hours, and try again? How to proceed?
> >
> > Check if:
> >
> > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation request.."
> > * `git config remote.origin.url` output is equal to particular push link
> >  on your project web page on git.sl.o
> >
> > --
> > Aleksey
> >

-- 
Aleksey
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-11-03 Thread George Hunt
I tried the push from another ip address. Same result, so it's probably not
the blacklist problem.

The literature suggests that I should check for world or group writeability
on the path from root to .ssh/known_hosts on the server, and on the client
machine. I have double checked my client. Don't have shell access to server.

George

On Sun, Oct 31, 2010 at 10:30 AM, Aleksey Lim wrote:

> On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> > Hi Aleksey,
> >
> > Thanks for the response.
> >
> > The ssh step fails.  Trying ssh -vvv gitori...@git.sugarlabs.orgindicates
> > that the negotiation proceeds in what looks to be a normal manner, until
> the
> > point where the client determines that public key method is authorized,
> and
> > client is offering my public  key, and the next response is "connection
> > closed".
> >
> > 
> > debug1: Next authentication method: publickey
> > debug1: Offering public key:
> > debug3: send_pubkey_test
> > debug2: we sent a publickey packet, wait for reply
> > Connection closed by 140.211.167.221
> > 
>
> "Connection closed" seems suspiciously. We had problem w/ blacklisting
> of some IPs.
>
> Can you try to ssh connect from different IP?
>
> (I'm CCing it to systems@)
>
> > I guessed that the server has forgotten my public key, so I uploaded it
> > again. I don't know if it is related, but the listserve forgot that I was
> > receiving the "digest" form of the list on Oct 16 or so.
> >
> > After the upload still no luck -- though there may be some form of
> > authorization required and/or delay built in, since when I first uploaded
> my
> > public key last year, it didn't work for at least a day.
> >
> > George
> >
> > On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim 
> wrote:
> >
> > > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > > I have 2 projects that I have been pushing git commits to  for almost
> a
> > > > year.  In one I created a new branch, and was concerned that my local
> > > change
> > > > was preventing the successful "git push".  But the other project has
> no
> > > > structural changes, and still gets the response "fatal: the  remote
> end
> > > hung
> > > > up unexpectedly" -- which I see has been a source of lots of
> headaches
> > > for
> > > > the inner circle.
> > > >
> > > > Should I just wait for 6 hours, and try again? How to proceed?
> > >
> > > Check if:
> > >
> > > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation request.."
> > > * `git config remote.origin.url` output is equal to particular push
> link
> > >  on your project web page on git.sl.o
> > >
> > > --
> > > Aleksey
> > >
>
> --
> Aleksey
>
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-11-03 Thread Aleksey Lim
On Wed, Nov 03, 2010 at 06:22:14AM -0400, George Hunt wrote:
> I tried the push from another ip address. Same result, so it's probably not
> the blacklist problem.
> 
> The literature suggests that I should check for world or group writeability
> on the path from root to .ssh/known_hosts on the server, and on the client
> machine. I have double checked my client. Don't have shell access to server.

Could you try to push to the new [testing] gitorious http://jita.sugarlabs.org/
To login to jita.sl.o, you need to use your git login name and wiki password
for the same login (if there is no wiki account, follow "Create an account"
link to create one) or, if you used OpenID, just login via "OpenID" link on 
jita.

And what is your login on git.sl.o and project you are trying to push?

> George
> 
> On Sun, Oct 31, 2010 at 10:30 AM, Aleksey Lim wrote:
> 
> > On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> > > Hi Aleksey,
> > >
> > > Thanks for the response.
> > >
> > > The ssh step fails.  Trying ssh -vvv gitori...@git.sugarlabs.orgindicates
> > > that the negotiation proceeds in what looks to be a normal manner, until
> > the
> > > point where the client determines that public key method is authorized,
> > and
> > > client is offering my public  key, and the next response is "connection
> > > closed".
> > >
> > > 
> > > debug1: Next authentication method: publickey
> > > debug1: Offering public key:
> > > debug3: send_pubkey_test
> > > debug2: we sent a publickey packet, wait for reply
> > > Connection closed by 140.211.167.221
> > > 
> >
> > "Connection closed" seems suspiciously. We had problem w/ blacklisting
> > of some IPs.
> >
> > Can you try to ssh connect from different IP?
> >
> > (I'm CCing it to systems@)
> >
> > > I guessed that the server has forgotten my public key, so I uploaded it
> > > again. I don't know if it is related, but the listserve forgot that I was
> > > receiving the "digest" form of the list on Oct 16 or so.
> > >
> > > After the upload still no luck -- though there may be some form of
> > > authorization required and/or delay built in, since when I first uploaded
> > my
> > > public key last year, it didn't work for at least a day.
> > >
> > > George
> > >
> > > On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim 
> > wrote:
> > >
> > > > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > > > I have 2 projects that I have been pushing git commits to  for almost
> > a
> > > > > year.  In one I created a new branch, and was concerned that my local
> > > > change
> > > > > was preventing the successful "git push".  But the other project has
> > no
> > > > > structural changes, and still gets the response "fatal: the  remote
> > end
> > > > hung
> > > > > up unexpectedly" -- which I see has been a source of lots of
> > headaches
> > > > for
> > > > > the inner circle.
> > > > >
> > > > > Should I just wait for 6 hours, and try again? How to proceed?
> > > >
> > > > Check if:
> > > >
> > > > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation request.."
> > > > * `git config remote.origin.url` output is equal to particular push
> > link
> > > >  on your project web page on git.sl.o
> > > >
> > > > --
> > > > Aleksey
> > > >
> >
> > --
> > Aleksey
> >

-- 
Aleksey
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-11-03 Thread George Hunt
Username for git.sl.o: georgejh...@gmail.com
projects: pydebug and xophoto

The push to jita.sl.o was successful!

George

On Wed, Nov 3, 2010 at 8:21 AM, Aleksey Lim  wrote:

> On Wed, Nov 03, 2010 at 06:22:14AM -0400, George Hunt wrote:
> > I tried the push from another ip address. Same result, so it's probably
> not
> > the blacklist problem.
> >
> > The literature suggests that I should check for world or group
> writeability
> > on the path from root to .ssh/known_hosts on the server, and on the
> client
> > machine. I have double checked my client. Don't have shell access to
> server.
>
> Could you try to push to the new [testing] gitorious
> http://jita.sugarlabs.org/
> To login to jita.sl.o, you need to use your git login name and wiki
> password
> for the same login (if there is no wiki account, follow "Create an account"
> link to create one) or, if you used OpenID, just login via "OpenID" link on
> jita.
>
> And what is your login on git.sl.o and project you are trying to push?
>
> > George
> >
> > On Sun, Oct 31, 2010 at 10:30 AM, Aleksey Lim  >wrote:
> >
> > > On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> > > > Hi Aleksey,
> > > >
> > > > Thanks for the response.
> > > >
> > > > The ssh step fails.  Trying ssh -vvv
> gitori...@git.sugarlabs.orgindicates
> > > > that the negotiation proceeds in what looks to be a normal manner,
> until
> > > the
> > > > point where the client determines that public key method is
> authorized,
> > > and
> > > > client is offering my public  key, and the next response is
> "connection
> > > > closed".
> > > >
> > > > 
> > > > debug1: Next authentication method: publickey
> > > > debug1: Offering public key:
> > > > debug3: send_pubkey_test
> > > > debug2: we sent a publickey packet, wait for reply
> > > > Connection closed by 140.211.167.221
> > > > 
> > >
> > > "Connection closed" seems suspiciously. We had problem w/ blacklisting
> > > of some IPs.
> > >
> > > Can you try to ssh connect from different IP?
> > >
> > > (I'm CCing it to systems@)
> > >
> > > > I guessed that the server has forgotten my public key, so I uploaded
> it
> > > > again. I don't know if it is related, but the listserve forgot that I
> was
> > > > receiving the "digest" form of the list on Oct 16 or so.
> > > >
> > > > After the upload still no luck -- though there may be some form of
> > > > authorization required and/or delay built in, since when I first
> uploaded
> > > my
> > > > public key last year, it didn't work for at least a day.
> > > >
> > > > George
> > > >
> > > > On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim  >
> > > wrote:
> > > >
> > > > > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > > > > I have 2 projects that I have been pushing git commits to  for
> almost
> > > a
> > > > > > year.  In one I created a new branch, and was concerned that my
> local
> > > > > change
> > > > > > was preventing the successful "git push".  But the other project
> has
> > > no
> > > > > > structural changes, and still gets the response "fatal: the
>  remote
> > > end
> > > > > hung
> > > > > > up unexpectedly" -- which I see has been a source of lots of
> > > headaches
> > > > > for
> > > > > > the inner circle.
> > > > > >
> > > > > > Should I just wait for 6 hours, and try again? How to proceed?
> > > > >
> > > > > Check if:
> > > > >
> > > > > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation
> request.."
> > > > > * `git config remote.origin.url` output is equal to particular push
> > > link
> > > > >  on your project web page on git.sl.o
> > > > >
> > > > > --
> > > > > Aleksey
> > > > >
> > >
> > > --
> > > Aleksey
> > >
>
> --
> Aleksey
>
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-11-04 Thread Aleksey Lim
On Wed, Nov 03, 2010 at 01:05:36PM -0400, George Hunt wrote:
> Username for git.sl.o: georgejh...@gmail.com
> projects: pydebug and xophoto
> 
> The push to jita.sl.o was successful!

Ok, we are limited in investigating problem with current git.sl.o
instance. These days we are moving it to jita.sl.o, so it will just work
for you.

> George
> 
> On Wed, Nov 3, 2010 at 8:21 AM, Aleksey Lim  wrote:
> 
> > On Wed, Nov 03, 2010 at 06:22:14AM -0400, George Hunt wrote:
> > > I tried the push from another ip address. Same result, so it's probably
> > not
> > > the blacklist problem.
> > >
> > > The literature suggests that I should check for world or group
> > writeability
> > > on the path from root to .ssh/known_hosts on the server, and on the
> > client
> > > machine. I have double checked my client. Don't have shell access to
> > server.
> >
> > Could you try to push to the new [testing] gitorious
> > http://jita.sugarlabs.org/
> > To login to jita.sl.o, you need to use your git login name and wiki
> > password
> > for the same login (if there is no wiki account, follow "Create an account"
> > link to create one) or, if you used OpenID, just login via "OpenID" link on
> > jita.
> >
> > And what is your login on git.sl.o and project you are trying to push?
> >
> > > George
> > >
> > > On Sun, Oct 31, 2010 at 10:30 AM, Aleksey Lim  > >wrote:
> > >
> > > > On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> > > > > Hi Aleksey,
> > > > >
> > > > > Thanks for the response.
> > > > >
> > > > > The ssh step fails.  Trying ssh -vvv
> > gitori...@git.sugarlabs.orgindicates
> > > > > that the negotiation proceeds in what looks to be a normal manner,
> > until
> > > > the
> > > > > point where the client determines that public key method is
> > authorized,
> > > > and
> > > > > client is offering my public  key, and the next response is
> > "connection
> > > > > closed".
> > > > >
> > > > > 
> > > > > debug1: Next authentication method: publickey
> > > > > debug1: Offering public key:
> > > > > debug3: send_pubkey_test
> > > > > debug2: we sent a publickey packet, wait for reply
> > > > > Connection closed by 140.211.167.221
> > > > > 
> > > >
> > > > "Connection closed" seems suspiciously. We had problem w/ blacklisting
> > > > of some IPs.
> > > >
> > > > Can you try to ssh connect from different IP?
> > > >
> > > > (I'm CCing it to systems@)
> > > >
> > > > > I guessed that the server has forgotten my public key, so I uploaded
> > it
> > > > > again. I don't know if it is related, but the listserve forgot that I
> > was
> > > > > receiving the "digest" form of the list on Oct 16 or so.
> > > > >
> > > > > After the upload still no luck -- though there may be some form of
> > > > > authorization required and/or delay built in, since when I first
> > uploaded
> > > > my
> > > > > public key last year, it didn't work for at least a day.
> > > > >
> > > > > George
> > > > >
> > > > > On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim  > >
> > > > wrote:
> > > > >
> > > > > > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > > > > > I have 2 projects that I have been pushing git commits to  for
> > almost
> > > > a
> > > > > > > year.  In one I created a new branch, and was concerned that my
> > local
> > > > > > change
> > > > > > > was preventing the successful "git push".  But the other project
> > has
> > > > no
> > > > > > > structural changes, and still gets the response "fatal: the
> >  remote
> > > > end
> > > > > > hung
> > > > > > > up unexpectedly" -- which I see has been a source of lots of
> > > > headaches
> > > > > > for
> > > > > > > the inner circle.
> > > > > > >
> > > > > > > Should I just wait for 6 hours, and try again? How to proceed?
> > > > > >
> > > > > > Check if:
> > > > > >
> > > > > > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation
> > request.."
> > > > > > * `git config remote.origin.url` output is equal to particular push
> > > > link
> > > > > >  on your project web page on git.sl.o
> > > > > >
> > > > > > --
> > > > > > Aleksey
> > > > > >
> > > >
> > > > --
> > > > Aleksey
> > > >
> >
> > --
> > Aleksey
> >

-- 
Aleksey
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] GIT.sugarlabs.org changes?

2010-11-04 Thread George Hunt
Thanks Aleksey for your help,

George

On Thu, Nov 4, 2010 at 7:25 AM, Aleksey Lim  wrote:

> On Wed, Nov 03, 2010 at 01:05:36PM -0400, George Hunt wrote:
> > Username for git.sl.o: georgejh...@gmail.com
> > projects: pydebug and xophoto
> >
> > The push to jita.sl.o was successful!
>
> Ok, we are limited in investigating problem with current git.sl.o
> instance. These days we are moving it to jita.sl.o, so it will just work
> for you.
>
> > George
> >
> > On Wed, Nov 3, 2010 at 8:21 AM, Aleksey Lim 
> wrote:
> >
> > > On Wed, Nov 03, 2010 at 06:22:14AM -0400, George Hunt wrote:
> > > > I tried the push from another ip address. Same result, so it's
> probably
> > > not
> > > > the blacklist problem.
> > > >
> > > > The literature suggests that I should check for world or group
> > > writeability
> > > > on the path from root to .ssh/known_hosts on the server, and on the
> > > client
> > > > machine. I have double checked my client. Don't have shell access to
> > > server.
> > >
> > > Could you try to push to the new [testing] gitorious
> > > http://jita.sugarlabs.org/
> > > To login to jita.sl.o, you need to use your git login name and wiki
> > > password
> > > for the same login (if there is no wiki account, follow "Create an
> account"
> > > link to create one) or, if you used OpenID, just login via "OpenID"
> link on
> > > jita.
> > >
> > > And what is your login on git.sl.o and project you are trying to push?
> > >
> > > > George
> > > >
> > > > On Sun, Oct 31, 2010 at 10:30 AM, Aleksey Lim <
> alsr...@member.fsf.org
> > > >wrote:
> > > >
> > > > > On Sat, Oct 30, 2010 at 07:58:00PM -0400, George Hunt wrote:
> > > > > > Hi Aleksey,
> > > > > >
> > > > > > Thanks for the response.
> > > > > >
> > > > > > The ssh step fails.  Trying ssh -vvv
> > > gitori...@git.sugarlabs.orgindicates
> > > > > > that the negotiation proceeds in what looks to be a normal
> manner,
> > > until
> > > > > the
> > > > > > point where the client determines that public key method is
> > > authorized,
> > > > > and
> > > > > > client is offering my public  key, and the next response is
> > > "connection
> > > > > > closed".
> > > > > >
> > > > > > 
> > > > > > debug1: Next authentication method: publickey
> > > > > > debug1: Offering public key:
> > > > > > debug3: send_pubkey_test
> > > > > > debug2: we sent a publickey packet, wait for reply
> > > > > > Connection closed by 140.211.167.221
> > > > > > 
> > > > >
> > > > > "Connection closed" seems suspiciously. We had problem w/
> blacklisting
> > > > > of some IPs.
> > > > >
> > > > > Can you try to ssh connect from different IP?
> > > > >
> > > > > (I'm CCing it to systems@)
> > > > >
> > > > > > I guessed that the server has forgotten my public key, so I
> uploaded
> > > it
> > > > > > again. I don't know if it is related, but the listserve forgot
> that I
> > > was
> > > > > > receiving the "digest" form of the list on Oct 16 or so.
> > > > > >
> > > > > > After the upload still no luck -- though there may be some form
> of
> > > > > > authorization required and/or delay built in, since when I first
> > > uploaded
> > > > > my
> > > > > > public key last year, it didn't work for at least a day.
> > > > > >
> > > > > > George
> > > > > >
> > > > > > On Sat, Oct 30, 2010 at 5:53 PM, Aleksey Lim <
> alsr...@member.fsf.org
> > > >
> > > > > wrote:
> > > > > >
> > > > > > > On Sat, Oct 30, 2010 at 05:34:34PM -0400, George Hunt wrote:
> > > > > > > > I have 2 projects that I have been pushing git commits to
>  for
> > > almost
> > > > > a
> > > > > > > > year.  In one I created a new branch, and was concerned that
> my
> > > local
> > > > > > > change
> > > > > > > > was preventing the successful "git push".  But the other
> project
> > > has
> > > > > no
> > > > > > > > structural changes, and still gets the response "fatal: the
> > >  remote
> > > > > end
> > > > > > > hung
> > > > > > > > up unexpectedly" -- which I see has been a source of lots of
> > > > > headaches
> > > > > > > for
> > > > > > > > the inner circle.
> > > > > > > >
> > > > > > > > Should I just wait for 6 hours, and try again? How to
> proceed?
> > > > > > >
> > > > > > > Check if:
> > > > > > >
> > > > > > > * `ssh gitori...@git.sugarlabs.org` outputs "PTY allocation
> > > request.."
> > > > > > > * `git config remote.origin.url` output is equal to particular
> push
> > > > > link
> > > > > > >  on your project web page on git.sl.o
> > > > > > >
> > > > > > > --
> > > > > > > Aleksey
> > > > > > >
> > > > >
> > > > > --
> > > > > Aleksey
> > > > >
> > >
> > > --
> > > Aleksey
> > >
>
> --
> Aleksey
>
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel