[msysGit] Issue 131 in msysgit: Download using HTTP POST is asking for username and password.

2008-07-14 Thread codesite-noreply
Issue 131: Download using HTTP POST is asking for username and password. http://code.google.com/p/msysgit/issues/detail?id=131 New issue report by joshi.saurin: What steps will reproduce the problem? 1. I am making HTTP Post request to "http://msysgit.googlecode.com/files/msysGit-netinstall-1.5.

[msysGit] git-mergetool + WinMerge

2008-07-14 Thread chongyc
Hi everybody I am going to merge conflict by using git-mergetool of msysgit(for windows) and Winmerge. what shall i do? Help me

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Johannes Schindelin
Hi, On Tue, 15 Jul 2008, Alexander Gavrilov wrote: > On Monday 14 July 2008 15:31:35 Alexander Gavrilov wrote: > > > So, I recommend you write your own little tool for this process. > > > Shouldn't be that hard. > > > > I think I'll try to build the Cygwin version of kill.exe under MSys first:

[msysGit] Issue 130 in msysgit: Cannot fetch to mapped network drives (Samba)

2008-07-14 Thread codesite-noreply
Issue 130: Cannot fetch to mapped network drives (Samba) http://code.google.com/p/msysgit/issues/detail?id=130 Comment #1 by astrojny: I can confirm this issue. I am experiencing the same error with SUSE 11. -- You received this message because you are listed in the owner or CC fields of this

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Alexander Gavrilov
On Monday 14 July 2008 15:31:35 Alexander Gavrilov wrote: > > So, I recommend you write your own little tool for this process. > > Shouldn't be that hard. > > I think I'll try to build the Cygwin version of kill.exe under MSys first: > I eventually succeded in building it, although I had to repla

[msysGit] Re: I want delete fault commit from my git repository

2008-07-14 Thread Edward Z. Yang
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 chongyc wrote: > I have found buggy commit object which I had committed into git > repository wrongly > > So I am going to delete it from my git repository git reset --hard and then cherry-pick the commits afterwards. Some rebase magic would do th

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Johannes Schindelin
Hi, On Mon, 14 Jul 2008, Marius Storm-Olsen wrote: > The PsTools from SysInternals have a PsKill command, which takes a -t option, > which will kill the process and all its descendants. > Should work for Msys processes and forked off Windows processes, if you can > get the Windows PID of the MSy

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Alexander Gavrilov
On Mon, Jul 14, 2008 at 3:18 PM, Marius Storm-Olsen <[EMAIL PROTECTED]> wrote: > However, (sorry to burst the bubble, but) I don't think you can use these > tools, since they require the user to accept a M$ EULA before using them. I already know that. > So, I recommend you write your own little

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Marius Storm-Olsen
Alexander Gavrilov said the following on 14.07.2008 12:38: Git binaries are pure Windows applications, not MSys apps. (Compiled with MinGW, but not linked to MSys DLLs.) Thus, it will definitely not respond to the Cygwin/MSys process infrastructure. Aha! Killing a native Windows application d

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Alexander Gavrilov
> Git binaries are pure Windows applications, not MSys apps. (Compiled with > MinGW, but not linked to MSys DLLs.) Thus, it will definitely not respond to > the Cygwin/MSys process infrastructure. Aha! Killing a native Windows application definitely requires a native kill utility. Cygwin version

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Marius Storm-Olsen
Alexander Gavrilov said the following on 14.07.2008 12:01: kill.exe (and kill builtin in bash) just calls the 'kill' system call, which is emulated by msys. Signal emulation in cygwin and mingw is done on the receiving side by allocating a shared memory area, named sprintf("cygpid.%x",pid), plu

[msysGit] Re: Include a process kill utility in msysgit?

2008-07-14 Thread Alexander Gavrilov
Hello, I waited for today to recheck my findings on a different system with 'official' msysgit binaries: On Sun, Jul 13, 2008 at 10:32 PM, Johannes Schindelin <[EMAIL PROTECTED]> wrote: > On Sun, 13 Jul 2008, Alexander Gavrilov wrote: >> OK, so I run 'git gui blame SomeFile' in one window, and l

[msysGit] I want delete fault commit from my git repository

2008-07-14 Thread chongyc
I have found buggy commit object which I had committed into git repository wrongly So I am going to delete it from my git repository How to do it ? please help me.

[msysGit] Re: [PATCH] Allow add_path() to add non-existent directories to the path

2008-07-14 Thread Johannes Sixt
Johannes Sixt schrieb: > +static const char *get_pwd_cwd(void) > +{ > + static char cwd[PATH_MAX + 1]; > + char *pwd; > + struct stat cwd_stat, pwd_stat; > + if (getcwd(cwd, PATH_MAX) == NULL) > + return NULL; > + pwd = getenv("PWD"); > + if (pwd && strcmp(pwd,