[git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Володимир Кулик
parf@parf:~/work$ git remote add frontend.epass gitolite@172.27.0.221 fatal: remote frontend.epass already exists. fatal: 'gitolite@172.27.0.221' does not appear to be a git repository fatal: The remote end hung up unexpectedly I want push my project to branch parfymer in gitolite@172.27.0.221

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Gergely Polonkai
The second one is obviously from SSH. Can you simply do ssh gitolite@172.27.0.221 ? On 27 Aug 2013 09:59, "Володимир Кулик" wrote: > parf@parf:~/work$ git remote add frontend.epass gitolite@172.27.0.221 > fatal: remote frontend.epass already exists. > > fatal: 'gitolite@172.27.0.221' does not app

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Володимир Кулик
> The second one is obviously from SSH. Can you simply do ssh > gito...@172.27.0.221 ? > >> parf@parf:~/work$ ssh gitolite@172.27.0.221 >> >> PTY allocation request failed on channel 0 >> >> hello parfymer, this is gitolite@kitech running gitolite3 v3.1-2-g3eefc06 >>> on git 1.7.9.5 >> >> >>>

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Gergely Polonkai
So the SSH part is all right. In this case, you should check gitolite's logs maybe. On 27 Aug 2013 10:08, "Володимир Кулик" wrote: > > The second one is obviously from SSH. Can you simply do ssh >> gito...@172.27.0.221 ? >> >>> parf@parf:~/work$ ssh gitolite@172.27.0.221 >>> >>> PTY allocation re

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Володимир Кулик
> So the SSH part is all right. In this case, you should check gitolite's > logs maybe. > how can i do it? -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an emai

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Володимир Кулик
parf@parf:~/work$ git push work FATAL: W any frontend.epass/parfymer parfymer DENIED by fallthru (or you mis-spelled the reponame) fatal: The remote end hung up unexpectedly -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Konstantin Khomoutov
On Tue, 27 Aug 2013 00:59:04 -0700 (PDT) Володимир Кулик wrote: > parf@parf:~/work$ git remote add frontend.epass gitolite@172.27.0.221 > fatal: remote frontend.epass already exists. ^^^ This means a record named "frontend.epass" for a remote repository already exists in the configuration of you

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Konstantin Khomoutov
On Tue, 27 Aug 2013 01:16:49 -0700 (PDT) Володимир Кулик wrote: > parf@parf:~/work$ git push work > FATAL: W any frontend.epass/parfymer parfymer DENIED by fallthru > (or you mis-spelled the reponame) > fatal: The remote end hung up unexpectedly I suspect you're confusing "named remote repositor

Re: [git-users] git fatal: The remote end hung up unexpectedly

2013-08-27 Thread Konstantin Khomoutov
On Tue, 27 Aug 2013 14:26:09 +0400 Konstantin Khomoutov wrote: [...] > Another thing you have to understand, that these "named remote > repositories" (which are managed by the `git remote` command) is just > a matter of convenience which > 1) saves you from typing full URL each time you want to a

[git-users] help installing on Solaris 8

2013-08-27 Thread Peter Clancy
Hi, I have downloaded the 1.8.4 source code tar file but I am having an issue getting it to compile. I have tried running a simple make which resulted in: dmake: Fatal error in reader: Makefile, line 352: Unexpected end of line seen Looking at line 352 looks like this: *GIT-VERSION-FILE: FORCE

Re: [git-users] help installing on Solaris 8

2013-08-27 Thread Konstantin Khomoutov
On Tue, 27 Aug 2013 05:14:11 -0700 (PDT) Peter Clancy wrote: > Hi, > I have downloaded the 1.8.4 source code tar file but I am having an > issue getting it to compile. I have tried running a simple make which > resulted in: dmake: Fatal error in reader: Makefile, line 352: > Unexpected end of lin

Re: [git-users] error during git pull

2013-08-27 Thread PJ Weisberg
On Aug 26, 2013 10:46 PM, "dexter ietf" wrote: > > i thought this would be the cause and none of my commit > has one/tgt tracked, i confirmed it by running 'git log' > which doesn't list 'one/tgt' as a committed file. so i'm > sure i haven't committed that file. That means that if git overwrote i

Re: [git-users] Read GIT directory manualy

2013-08-27 Thread Dale R. Worley
> From: Boris Trivic > > But I am wondering if I can read some file or files to get same list ? Of course, the information that git-show provides for you it extracts from some file or files, so in a sense, the answer is "yes". But I suspect you are asking "Is there a file which directly lists t

Re: [git-users] Read GIT directory manualy

2013-08-27 Thread Konstantin Khomoutov
On Tue, 27 Aug 2013 10:44:28 -0400 wor...@alum.mit.edu (Dale R. Worley) wrote: > > But I am wondering if I can read some file or files to get same > > list ? > > Of course, the information that git-show provides for you it extracts > from some file or files, so in a sense, the answer is "yes". B

[git-users] Re: Read GIT directory manualy

2013-08-27 Thread Boris Trivic
Thanks to all! My doubt is closed... I was searching on Google a lot of time but I was unable to find file that I can read to get list of changed files. Now I understand why :) I am going to execute command and use result to show in app. On Monday, August 26, 2013 11:22:53 PM UTC+2, Boris Tr

Re: [git-users] Git's use of "less"

2013-08-27 Thread Dale R. Worley
> From: Martin Mųller Skarbiniks Pedersen > > My complaint about "less" is that it does not exit when one types > > control-C. > > alias less='less -K' Thanks for pointing out "-K". It would probably be a bit cleaner to set the LESS environment variable to "-K", though: export LESS=-K Dale

[git-users] Nuevo con Git...

2013-08-27 Thread Pedro Contreras
Hola, Estoy iniciando con Git y no he podido hacer que teniendo un Repositorio (en el Servidor) y teniendo un Master (Local) pueda hacer el push para actualizar el Repositorio, el manejo en el Master al parecer si me funciona bien, pero me interesa poder usar un Repositorio para controlar varias

Re: [git-users] Nuevo con Git...

2013-08-27 Thread Juan Fernando Obando Saldarriaga
Hola, - Cuál servicio estas utilizando (GitHub, BitBucket, etc)? - Con cuál comando estás haciendo el push? 2013/8/27 Pedro Contreras > Hola, > Estoy iniciando con Git y no he podido hacer que teniendo un Repositorio > (en el Servidor) y teniendo un Master (Local) pueda hacer el push para > a

Re: [git-users] Nuevo con Git...

2013-08-27 Thread Juan Fernando Obando Saldarriaga
Ya has adicionado el remote a tu repositorio Git? On Tue, Aug 27, 2013 at 3:03 PM, Pedro Contreras wrote: > Hola, > el que instalé es el Git GUI y desde el Visual el Extensions > > Si puedo hace el Commit en el master, pero al querer hacer el Push para > subir los cambios al Repositorio me marc

Re: [git-users] Nuevo con Git...

2013-08-27 Thread Pedro Contreras
Hola, el que instalé es el Git GUI y desde el Visual el Extensions Si puedo hace el Commit en el master, pero al querer hacer el Push para subir los cambios al Repositorio me marca lo siguiente: "C:\Program Files\Git\bin\git.exe" push --recurse-submodules=check --progress "SIIACPlus" master:maste

Re: [git-users] Nuevo con Git...

2013-08-27 Thread Pedro Contreras
si, tengo entendido que con eso ya quedan relacionados mi proyecto Master y mi proyecto Repositorio 2013/8/27 Juan Fernando Obando Saldarriaga > Ya has adicionado el remote a tu repositorio Git? > > > On Tue, Aug 27, 2013 at 3:03 PM, Pedro Contreras wrote: > >> Hola, >> el que instalé es el Git

[git-users] Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread Tat-Chee Wan
Hi, I'm having a strange problem with git but only on Mac OS X. There is a public repository https://github.com/mindboards/ev3sources.gitwhich when cloned to Linux works correctly, but when cloned to Mac OS X (tested on 10.8.4, git 1.8.4), gives the following output immediately after a fresh cl

Re: [git-users] Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread William Seiti Mizuta
Hi Tat-Chee I didn't get your problem. Can you tell a little more about it? William Seiti Mizuta @williammizuta Caelum | Ensino e Inovação www.caelum.com.br On Wed, Aug 28, 2013 at 12:09 AM, Tat-Chee Wan wrote: > Hi, > > I'm having a strange problem with git but only on Mac OS X. > There is

Re: [git-users] Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread TC Wan
On Wednesday, August 28, 2013 12:58:15 PM UTC+8, William Seiti Mizuta wrote: > > Hi Tat-Chee > > I didn't get your problem. Can you tell a little more about it? > > > The repository was clean and freshly cloned from github. On Linux, it shows "nothing to commit, working directory clean". But on M

Re: [git-users] Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread William Seiti Mizuta
Using the command git diff, what is the differences that git tells you about the files? William Seiti Mizuta @williammizuta Caelum | Ensino e Inovação www.caelum.com.br On Wed, Aug 28, 2013 at 2:34 AM, TC Wan wrote: > > On Wednesday, August 28, 2013 12:58:15 PM UTC+8, William Seiti Mizuta > w

[git-users] Re: Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread Thomas Ferris Nicolaisen
On Wednesday, August 28, 2013 5:09:02 AM UTC+2, TC Wan wrote: > Hi, > > I'm having a strange problem with git but only on Mac OS X. > There is a public repository > https://github.com/mindboards/ev3sources.gitwhich when cloned to Linux works > correctly, but when cloned to Mac OS X > (tested on

[git-users] Re: Strange problem on Mac OS X git 1.8.4

2013-08-27 Thread Thomas Ferris Nicolaisen
Doh, I managed to paste the same content twice in my previous mail. I'll try again, and delete the original in the online forum one for easier reading. I get the same situation on my machine (OS X 10.8.4). Funny thing is that there are actually real diffs, not just some EOL conversion stuff.