Re: [git-users] contaminated git log

2015-11-17 Thread Konstantin Khomoutov
On Tue, 17 Nov 2015 00:06:19 -0800 (PST) Daniel Doron wrote: > >> > see screen capture here: http://postimg.org/image/esgjyhk9j/ > >> > had to black out some parts because of proprietary info...but I > >> > hope you get the gist. > >> > >> This "remote" stuff seems

Re: [git-users] contaminated git log

2015-11-17 Thread Daniel Doron
Thanks Konstantin, that is very thorough information. I will find the time and formulate a request to Git developers. Daniel. On Tuesday, November 17, 2015 at 3:59:36 PM UTC+2, Konstantin Khomoutov wrote: > > On Tue, 17 Nov 2015 00:06:19 -0800 (PST) > Daniel Doron

[git-users] How to handle a longrunning branch

2015-11-17 Thread mike
Hi, I have had a branch, feature_xyz, for a long time ( yes I know I should not but it was not my call). Problem is I have not updated it with changes from master. So I started to do a regular rebase ( i want to keep history): git fetch origin master git rebase origin/master After a while

Re: [git-users] How to handle a longrunning branch

2015-11-17 Thread Konstantin Khomoutov
On Tue, 17 Nov 2015 10:02:03 -0800 (PST) mike wrote: > I have had a branch, feature_xyz, for a long time ( yes I know I > should not but it was not my call). Problem is I have not updated it > with changes from master. So I started to do a regular rebase ( i > want

Re: [git-users] contaminated git log

2015-11-17 Thread Magnus Therning
On Mon, Nov 16, 2015 at 05:52:22AM -0800, Daniel Doron wrote: > see screen capture here: http://postimg.org/image/esgjyhk9j/ > had to black out some parts because of proprietary info...but I hope you > get the gist. It looks to me like you've based your work on the remote repo, i.e. your

Re: [git-users] contaminated git log

2015-11-17 Thread Gergely Polonkai
Hello, short answer: every commit that has a reference (tag, local or remote branch, etc.) is visible and forever (ie. won’t get garbage collected). As soon as you remove all references, the commits go invisible and the garbage collector will remove them after the set number of days (30 by

Re: [git-users] contaminated git log

2015-11-17 Thread Daniel Doron
Actually it did help! I forgot to delete one TAG Can you explain the rational behind this? Daniel. On Monday, November 16, 2015 at 6:28:37 PM UTC+2, Daniel Doron wrote: > > tried deleting them...changes nothing (except for the tags being gone) > > On Monday, November 16, 2015 at 4:13:14 PM

Re: [git-users] CApath: none ????

2015-11-17 Thread mvs
Thanks. For what I understand I found on http://blogs.msdn.com/b/phkelley/archive/2014/01/20/adding-a-corporate-or-self-signed-certificate-authority-to-git-exe-s-store.aspx a note: *(Note: *In the Git for Windows 2.x series, the path has changed to C:\Program Files

Re: [git-users] How to handle a longrunning branch

2015-11-17 Thread mike
Den tisdag 17 november 2015 kl. 19:40:15 UTC+1 skrev Konstantin Khomoutov: > > On Tue, 17 Nov 2015 10:02:03 -0800 (PST) > mike wrote: > > > I have had a branch, feature_xyz, for a long time ( yes I know I > > should not but it was not my call). Problem is I have not