gitk doesn't quit

2018-10-02 Thread Alan Aversa
To quit gitk, I have to invoke ctrl-c from the command line. I get this error when trying to quit gitk with ctrl-q or from the GUI menu: -- ☧ error writing "stdout": I/O error error writing "stdout": I/O error while executing "puts "Error saving config: $err"" (procedure "savestuff"

Business Proposal

2018-05-21 Thread Alan austin
Hello, I am Mr. Alan Austin, I am currently working with Credit suisse Bank London. I saw your contact during my private search and I have a deep believe that you will be very honest, committed and capable of assisting in this business venture. I am an account officer to late Dr. Manzoor

TRADING ACCOUNT

2018-03-31 Thread KELLY ALAN
Dear sir , I KELLY ALAN purchasing and sales manager of CFM INTERNATIONAL . Our Company specialised in Supplying computer hardware and Electronic .We want to extend our supplier list because of concurrency in prices on the international market We are seeking a supplier with whom we can

[no subject]

2018-02-26 Thread Alan Gage
Hello, I recently noticed a bug involving GitBash and Python. I was running a function that would post the system time once every second using a while loop but the text was only sent after the while loop ended due to a timer I had set. Essesntially, instead of it being entered every second into

Snapping git

2017-05-10 Thread Alan Pope
? :) [1] http://snapcraft.io/ [2] http://snapcraft.io/docs [3] http://forum.snapcraft.io/ [4] https://snapcraft.io/docs/core/install Best regards -- Alan Pope Snap Advocate Canonical - Ubuntu Engineering and Services +44 (0) 7973 620 164 alan.p...@canonical.com http://ubuntu.com/

Problem with duplicated commits due to a merge

2016-04-07 Thread alan
I help manage a Linux kernel repo for a large company. I have encountered an odd problem that I think should not exist, but does. At one point a merge was done from the development repo to the local branch. Two of the existing commits have the same change to the same location. At first glance

Re: "git stash pop" is doing an unwanted "git add" when there are conflicts.

2015-12-29 Thread Alan Mackenzie
Hello, Jeff. On Tue, Dec 29, 2015 at 02:53:30AM -0500, Jeff King wrote: > On Thu, Dec 24, 2015 at 09:20:38AM +0000, Alan Mackenzie wrote: > > > It seems to be a side effect of merge-recursive to stage the results, > > > and in the no-conflict path we expli

Re: "git stash pop" is doing an unwanted "git add" when there are conflicts.

2015-12-24 Thread Alan Mackenzie
Hello, Jeff. On Tue, Dec 22, 2015 at 04:30:33AM -0500, Jeff King wrote: > On Tue, Dec 22, 2015 at 09:17:38AM +0100, Dennis Kaarsemaker wrote: > > On ma, 2015-12-21 at 14:29 +0000, Alan Mackenzie wrote: > > > Hello, git project. > > > Last night, whilst clearing out a

Re: "git stash pop" is doing an unwanted "git add" when there are conflicts.

2015-12-21 Thread Alan Mackenzie
Alan Mackenzie <a...@muc.de> wrote: on Mon, 21 Dec 2015 14:29:54 > Hello, git project. > Last night, whilst clearing out a stale "stash stack", I did "git stash > pop". There were conflicts in two files. > However, all the popped files became

"git stash pop" is doing an unwanted "git add" when there are conflicts.

2015-12-21 Thread Alan Mackenzie
t;git reset HEAD" on each of the files, none of which I wanted to commit. I searched the git-stash man page for this scenario, but found nothing about it. Surely staging all the files is a bug? -- Alan Mackenzie (Nuremberg, Germany). -- To unsubscribe from this list: send the line "unsubs

Odd issue with Git-am

2015-11-20 Thread alan
The following describes bad behavior, but it is bad behavior that git-am does not flag as bad. It just drops data silently. I have a developer who has a patch that I am importing into git with git-am. (Currently they have a quilt-like setup that is full of bad and incomplete patches.) At some

Re: Odd problems trying to build an orphaned branch

2015-11-06 Thread alan
> On Thu, Nov 05, 2015 at 01:16:54PM -0800, a...@clueserver.org wrote: > >> I created an orphan branch from 3.12-rc1. I then used git format-patch >> to >> generate patches from 3.12-rc1 to HEAD. (Over 7000 patches.) I use git >> am >> to apply them to the orphan branch. At patch 237 it fails to

Odd problems trying to build an orphaned branch

2015-11-05 Thread alan
I am trying to create an orphaned branch that contains the linux-3.12.y branch from linux-stable. Each time I try a method to make this work I encounter a blocker that halts my progress. I expect that at least one of these is a bug, but I am not sure. Here is what I did. I have read the docs and

[PATCH] Pass amend to pre-commit hook

2015-09-14 Thread Alan Clucas
to the original code (which violates the rule). Without this change I cannot detect this is an amend and reject the change (unless --no-verify). With this I can detect this is an amend and verify the patch as a whole is not in violation of the rule. Signed-off-by: Alan Clucas <alan.

Re: [PATCH] Pass amend to pre-commit hook

2015-09-14 Thread Alan Clucas
On 14/09/15 15:47, Jeff King wrote: On Mon, Sep 14, 2015 at 01:14:20PM +0100, Alan Clucas wrote: Pass a single parameter 'amend' to the pre-commit hook when performing a commit amend. I think this is a sensible thing to want, and it has come up a few times. I'm not sure why the last round

Rebase bug

2015-07-31 Thread alan
I think I have identified an obscure bug. I have a reproducible test case. I am trying to come up with enough of a test case that can be used for finding and fixing the issue. I have a set of patches. They are diffs. Some have whitespace issues. (Which I believe triggers the bug.) The patches go

Re: Rebase bug

2015-07-31 Thread alan
I think I have identified an obscure bug. I have a reproducible test case. I am trying to come up with enough of a test case that can be used for finding and fixing the issue. BTW, I have tested this on 1.7.6.6 and 2.5.0. Same results on either version. -- To unsubscribe from this list: send

Reachability lists in git

2014-11-18 Thread Alan Stern
to just the latest commits? That is, list commit X if and only if A is reachable from X, B isn't reachable from X, and B is reachable from each of X's children? Thanks, Alan Stern -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org

Re: Reachability lists in git

2014-11-18 Thread Alan Stern
On Tue, 18 Nov 2014, Jonathan Nieder wrote: Hi, Alan Stern wrote: The git rev-list A ^B command lists all the commits that are reachable from A but not from B. Is there a comparable command for the converse relation, that is, a command to list all the commits that A is reachable

Re: Reachability lists in git

2014-11-18 Thread Alan Stern
On Tue, 18 Nov 2014, Jonathan Nieder wrote: Alan Stern wrote: Tracking down regressions. Bisection isn't perfect. Suppose a bisection run ends up saying that B is the first bad commit. It's easy enough to build B and test it, to verify that it really is bad. But to be sure that B

Re: Reachability lists in git

2014-11-18 Thread Alan Stern
On Tue, 18 Nov 2014, Junio C Hamano wrote: Alan Stern st...@rowland.harvard.edu writes: On Tue, 18 Nov 2014, Jonathan Nieder wrote: Alan Stern wrote: Tracking down regressions. Bisection isn't perfect. Suppose a bisection run ends up saying that B is the first bad commit

Re: Reachability lists in git

2014-11-18 Thread Alan Stern
On Tue, 18 Nov 2014, Junio C Hamano wrote: Alan Stern st...@rowland.harvard.edu writes: No. Here's a simple example: Y / / X--B In this diagram, X = B^. But B isn't reachable from either X or Y, whereas it is reachable

glob escaping doesn't work with git mv

2014-08-06 Thread Alan Grover
I tried using escaped globs with git mv, but globs don't seem to be expanded with git mv. So, for example, I've got files file1 file2, and have been editing them, so I've got file1~ and file2~ also, and *~ is in .gitignore. If I do: $ mkdir newdir $ git mv file* newdir I get a 'fatal: not in

[PATCH] Fix: wrong offset for CET timezone

2014-06-26 Thread Alan Franzoni
From: Alan Franzoni usern...@franzoni.eu Signed-off-by: Alan Franzoni usern...@franzoni.eu --- Documentation/date-formats.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/date-formats.txt b/Documentation/date-formats.txt index ccd1fc8..284308a 100644

RE: Fetch and -t

2013-02-12 Thread Olsen, Alan R
PM To: Olsen, Alan R Cc: git@vger.kernel.org Subject: Re: Fetch and -t Olsen, Alan R alan.r.ol...@intel.com writes: I have found that if I add a remote and do a git fetch -t -f remote_name that it *only* pulls tags. Reading the man page it seems like it should pull all the remotes and all

RE: Interesting git-format-patch bug

2012-11-27 Thread Olsen, Alan R
example of what is happening here. -Original Message- From: Perry Hutchison [mailto:per...@pluto.rain.com] Sent: Monday, November 26, 2012 8:15 PM To: gits...@pobox.com Cc: git@vger.kernel.org; Olsen, Alan R Subject: Re: Interesting git-format-patch bug Junio C Hamano gits...@pobox.com

Interesting git-format-patch bug

2012-11-26 Thread Olsen, Alan R
I found an interesting bug in git-format-patch. Say you have a branch A. You create branch B and add a patch to it. You then merge that patch into branch A. After the merge, some other process (we will call it 'gerrit') uses annotate and changes the comment on the patch that exists on branch

Re: [PATCH] Debian packaging for 0.99.4

2005-08-11 Thread Alan Chandler
to keep as git command and use dpkg-divert to change the other to another name to some other name? -- Alan Chandler http://www.chandlerfamily.org.uk - To unsubscribe from this list: send the line unsubscribe git in the body of a message to [EMAIL PROTECTED] More majordomo info at http