Re: bug: autostash is lost after aborted rebase

2016-05-16 Thread Eugene Yarmash
The bug still persists when you abort the rebase by using :cq in Vim (exit with an error code). See also http://stackoverflow.com/q/37252108/244297 -- View this message in context: http://git.661346.n2.nabble.com/bug-autostash-is-lost-after-aborted-rebase-tp7611141p7656556.html Sent from the gi

deadlock git upload-pack command when GIT_TRACE is enabled

2016-05-09 Thread Eugene Petrenko
writes TRACE logging into stderr and eventually (on hug repo) the OS buffer runs-out deadlocking the execution. Best regards, Eugene Petrenko -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo inf

Re: About checkout with untracked files on remote.

2015-02-25 Thread Eugene Fedorov
I have specific case which you can use to improve git. My example: I have 2 branches - master, implement_button. Branch implement_button add some button with few style.css and fonts files. Both branches have same git ignore file where all fonts and css folders with files ignored. The point: Now

Re: Help creating git alias

2013-10-31 Thread Eugene Sajine
On Thu, Oct 31, 2013 at 3:41 PM, Junio C Hamano wrote: > Eugene Sajine writes: > >> One note: i tried the ${GIT_PREFIX:-.} and ${GIT_PREFIX} and it seems >> to give the same results. What is the expected difference here? > > GIT_PREFIX may be an empty string when yo

Re: Help creating git alias

2013-10-31 Thread Eugene Sajine
On Thu, Oct 31, 2013 at 2:15 PM, David Aguilar wrote: > On Thu, Oct 31, 2013 at 11:07:19AM -0700, Junio C Hamano wrote: >> David Aguilar writes: >> >> > A-ha.. I think adding the chdir to alias is possible using a function. >> >> You do not have to use a function to do so, no? > > Right, of cours

Re: Help creating git alias

2013-10-31 Thread Eugene Sajine
On Wed, Oct 30, 2013 at 11:54 PM, Junio C Hamano wrote: > Eugene Sajine writes: > >> That was my initial intention, because I would like to be able to pass >> parameters like to git log or git blame correctly without the explicit >> use of $1. Could you please advise a

Re: Help creating git alias

2013-10-30 Thread Eugene Sajine
On Wed, Oct 30, 2013 at 5:02 PM, Junio C Hamano wrote: > Eugene Sajine writes: > >> On Wed, Oct 30, 2013 at 3:57 PM, Ralf Thielow wrote: >>> lg=!git log --pretty=format:'%h %ad %ae %s' --date=short | sed 's/@\\S*//g' >>> >>> should wo

Re: Help creating git alias

2013-10-30 Thread Eugene Sajine
On Wed, Oct 30, 2013 at 3:57 PM, Ralf Thielow wrote: > lg=!git log --pretty=format:'%h %ad %ae %s' --date=short | sed 's/@\\S*//g' > > should work. It did! thanks! I didn't know that "!sh -c" is not needed > > On Wed, Oct 30, 2013 at 8:34

Re: Help creating git alias

2013-10-30 Thread Eugene Sajine
nderstanding \S* as regexp so it removes only "@", while i need to remove from @ to the next whitespace Thanks, Eugene > > On 30 October 2013 12:34, Eugene Sajine wrote: >> Hi, >> >> I need some advice about creating the git command alias: >> >>

Help creating git alias

2013-10-30 Thread Eugene Sajine
Hi, I need some advice about creating the git command alias: I have this as the command: git log --pretty=format:"%h %ad %ae %s" --date=short | sed 's/@\S*//g' The purpose is to cut off the email domain and keep only username. I'm trying to create this as the alias: lg = !sh -c 'git log --p

Re: Fwd: Fwd: git-daemon access-hook race condition

2013-09-13 Thread Eugene Sajine
for it to finish to let the service to do its job. But when i > do push - it sleeps for 10 seconds anyway. Am i missing something > obvious here? > > Any help is much appreciated! > > Thanks, > Eugene I found a following solution to make it happen while waiting for somebody to

Re: Fwd: Fwd: git-daemon access-hook race condition

2013-09-12 Thread Eugene Sajine
On Thu, Sep 12, 2013 at 6:20 PM, Junio C Hamano wrote: > Junio C Hamano writes: > >> Eugene Sajine writes: >> >>> So are you really sure that it is a non-starter to have >>> --before-service/--after-service options for access-hook? >> >> Give

Re: Fwd: Fwd: git-daemon access-hook race condition

2013-09-12 Thread Eugene Sajine
On Thu, Sep 12, 2013 at 5:16 PM, Eugene Sajine wrote: > Junio, > > Thanks for the clarification! Your solution does look better. > > For now though i think i will have to delay the notification somehow > and let the service finish first then notify the server. > >

Re: Fwd: Fwd: git-daemon access-hook race condition

2013-09-12 Thread Eugene Sajine
Junio, Thanks for the clarification! Your solution does look better. For now though i think i will have to delay the notification somehow and let the service finish first then notify the server. Thanks again! Eugene On Thu, Sep 12, 2013 at 5:08 PM, Junio C Hamano wrote: > Eugene Saj

Fwd: Fwd: git-daemon access-hook race condition

2013-09-12 Thread Eugene Sajine
On Thu, Sep 12, 2013 at 3:15 PM, Junio C Hamano wrote: > Eugene Sajine writes: > >> Is it possible to have access-hook to be executed after receive? > > The whole point of access-hook is to allow it to decide whether the > access is allowed or not, so that is a non-starte

Fwd: git-daemon access-hook race condition

2013-09-12 Thread Eugene Sajine
le to have access-hook to be executed after receive? Is it possible to introduce a parameter that would specify if it needs to be executed before receive or after? Thanks, Eugene -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.

Re: git daemon --access-hook problem

2013-06-03 Thread Eugene Sajine
wrote: > On Mon, Jun 3, 2013 at 8:02 PM, Eugene Sajine wrote: >> Would you be able to advise how this should be done? >> I don't get the error message (i mean the output of pwd) if i do this: >> >> echo `pwd` >> exit 1 >> >> What should it be? > &

Re: git daemon --access-hook problem

2013-06-03 Thread Eugene Sajine
a failure, also > try this to show the cwd Would you be able to advise how this should be done? I don't get the error message (i mean the output of pwd) if i do this: echo `pwd` exit 1 What should it be? Thanks! Eugene > > Hope that helps, > Antoine, -- To unsubscribe fro

Re: git daemon --access-hook problem

2013-06-02 Thread Eugene Sajine
Anybody? Any ideas? Thanks in advance! Eugene On Fri, May 31, 2013 at 4:22 PM, Eugene Sajine wrote: > Hi, > > I'm trying to test this new feature and having problems getting any > results in the following scenario: > > i have a repo in local folder > > /home/use

git daemon --access-hook problem

2013-05-31 Thread Eugene Sajine
fter the execution, So the hook doesn't seem to work. What might be the issue here? Thanks, Eugene -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Fwd: Fwd: git cvsimport implications

2013-05-17 Thread Eugene Sajine
t git fast-import wrapped into nice command like: git cvsimport -C path/to/my/new/shiny/gitrepo Or are there any particular reasons why end user must deal with blob and dump files and do fast-import afterwards? Thanks, Eugene -- To unsubscribe from this list: send the line "unsubscribe git&

Re: Fwd: git cvsimport implications

2013-05-15 Thread Eugene Sajine
there is a situation when cvsimport can do things right and when it definitely going to fail? Anyway, thanks a lot for the info. I do know that cvs2git is an option. If the cvsimport is that broken - is there any plan to fix it? Thanks, Eugene On Wed, May 15, 2013 at 2:24 AM, Michael Haggerty

Fwd: git cvsimport implications

2013-05-14 Thread Eugene Sajine
ues" in the man pages for cvsimport)? Thanks, Eugene -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Bad URL passed to RA layer ('https')

2012-12-12 Thread Eugene
Here I. Come gmail.com> writes: > --8<--- > $ git svn clone https://host/svn/myrepo > Initialized empty Git repository in /tmp/myrepo/.git/ > Bad URL passed to RA layer: Unrecognized URL scheme for > 'https://host/svn/myrepo' at /usr/libexec/git-core/git-svn li

Re: Android Replies to Git List getting rejected

2012-08-07 Thread Eugene Sajine
y feel that i could and would be more active on the list if not for this limitation. Don't want to accept HTML messages - fine. But don't tell me which program to use for my email, especially when I'm sending totally valid message, so take my plain text message part a

Re: need help with syncing two bare repos

2012-08-03 Thread Eugene Sajine
On Fri, Aug 3, 2012 at 4:00 PM, Junio C Hamano wrote: > Eugene Sajine writes: > >> I think the best variant would be to do something like: >> >> $ git pull --rebase /refs/heads/*:/refs/heads/* >> $ git push origin /refs/heads/*:/refs/heads/* > > You perhaps

Egit is not included into eclipse bundles

2012-07-20 Thread Eugene Sajine
Hi, I have a strong impression that Egit was supposed to be included into the default eclipse distribution starting from Eclipse Helios. May be it was my wild dream that I would like to become true, but I would appreciate any info about why I still can't see it in Juno? Thanks, Eugene