Re: I messed up my own git tree and I don't know how to fix it.

2019-04-21 Thread rob
    go get github.com/rogpeppe/godef (modified content)     git add these, then git commit. And my directories are clean when I git status them. I could not figure out anything else to do. --rob On 4/21/19 2:53 PM, rob wrote: I did   git config --global core.trustctime false   git confi

Re: I messed up my own git tree and I don't know how to fix it.

2019-04-21 Thread rob
I did   git config --global core.trustctime false   git config --global core.checkStat minimal No difference -rob On 4/21/19 1:22 PM, Philip Oakley wrote: On 21/04/2019 18:07, rob wrote: possibly. What do I do about that? --rob see below. On 4/21/19 9:03 AM, Philip Oakley wrote: Hi

Re: I messed up my own git tree and I don't know how to fix it.

2019-04-21 Thread rob
possibly.  What do I do about that? --rob On 4/21/19 9:03 AM, Philip Oakley wrote: Hi Rob, On 21/04/2019 13:34, rob wrote: didn't work.  I did not get any error messages, just didn't work.  After I did   git reset --hard   git status I see the same 3 files that say changes

Re: I messed up my own git tree and I don't know how to fix it.

2019-04-21 Thread rob
didn't work.  I did not get any error messages, just didn't work.  After I did   git reset --hard   git status I see the same 3 files that say changes not staged for commit: modified and it lists the same 3 files. --rob On 4/21/19 1:03 AM, Adrian H wrote: If I understand th

I messed up my own git tree and I don't know how to fix it.

2019-04-20 Thread rob
puter, then running go get to restore them does not change git status. It still sahs changes not stated for commit: modified. This happens for the above 3 tree items. How do I restore these to the github remote repository condition and not have my own git tree mark these as changed? --rob solomon

Re: [PATCH] userdiff: Add a builtin pattern for dts files

2019-01-17 Thread Rob Herring
better diff > > output on dts files when they use the diff=dts driver. > > > > The regex has been constructed based on the spec at devicetree.org[1] > > > > [1] > > https://github.com/devicetree-org/devicetree-specification/releases/latest > > > > Cc:

git-gui child windows are still blank

2019-01-12 Thread Rob McDonald
t any child window (say when you press 'Push') is entirely blank. I haven't been able to find any sign that work has progressed on this -- has anyone made headway? Rob

Downloading for mac.

2015-12-14 Thread Rob Cifre
Hello it seems that the download for mac isn’t working on your website. Any other location I can download it from? https://git-scm.com/download/mac-- 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://

[PATCH v2] contrib/subtree: unwrap tag refs

2015-11-13 Thread Rob Mayoff
in a message to the mailing list from Junio C Hamano dated 29 Apr 2014, with the subject "Re: git subtree issue in more recent versions". The archived message can be found at <http://comments.gmane.org/gmane.comp.version-control.git/247503>. Signed-off-by: Rob Mayoff --- change

[PATCH] contrib/subtree: unwrap tag refs

2015-11-12 Thread Rob Mayoff
From: Rob Mayoff If a subtree was added using a tag ref, the tag ref is stored in the subtree commit message instead of the underlying commit's ref. To split or push subsequent changes to the subtree, the subtree command needs to unwrap the tag ref. This patch makes it do so. The proble

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-28 Thread Rob Hoelz
such a configuration works because it relies on a bug, and should use ssh://myserver:repo/ instead. I personally feel that the fact that insteadOf + url works and pushInsteadOf + pushurl doesn't is inconsistent and confusing. However, I am one user of many, and this is my first exposure to Git from a

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
On Wed, 27 Mar 2013 15:56:56 -0700 Jonathan Nieder wrote: > Rob Hoelz wrote: > > > My mistake; I had not seen it! I thought you may have found a bug > > in my implementation, so I wanted to double check. =) > > Well, I had found an unfortunate consequence of the imple

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
On Wed, 27 Mar 2013 15:47:35 -0700 Jonathan Nieder wrote: > Hi, > > Rob Hoelz wrote: > > On Wed, 27 Mar 2013 11:23:45 -0700 > > Jonathan Nieder wrote: > > >> Suppose I configure > >> > >>[url "git://anongit.myserver.example

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
7;ve found that I prefer this other way. The test that checked that pushInsteadOf + pushurl shouldn't work as I expect was actually broken; I have removed it, updated the documentation, and sent a new patch to the list. -Rob -- 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

[PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
posed to pushInsteadOf values for expanding the pushurl alias. This commit fixes that. Signed-off-by: Rob Hoelz --- Documentation/config.txt | 3 +- remote.c | 6 +++- t/t5516-fetch-push.sh| 77 +++- 3 files changed, 75 ins

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
On Wed, 27 Mar 2013 11:23:45 -0700 Jonathan Nieder wrote: > Rob Hoelz wrote: > > > --- a/remote.c > > +++ b/remote.c > > @@ -465,7 +465,11 @@ static void alias_all_urls(void) > > if (!remotes[i]) > > continue; >

[PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
posed to pushInsteadOf values for expanding the pushurl alias. This commit fixes that. Signed-off-by: Rob Hoelz --- remote.c | 6 +++- t/t5516-fetch-push.sh | 77 +++ 2 files changed, 82 insertions(+), 1 deletion(-) diff --git a/

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-27 Thread Rob Hoelz
On Wed, 20 Mar 2013 07:35:58 -0700 Junio C Hamano wrote: > Rob Hoelz writes: > > > On 3/19/13 7:08 PM, Junio C Hamano wrote: > >> Jonathan Nieder writes: > >> > >>> Junio C Hamano wrote: > >>>> Jonathan Nieder write

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-20 Thread Rob Hoelz
;> push test: use test_config where appropriate >>>> push test: simplify check of push result >>>> push test: rely on &&-chaining instead of 'if bad; then echo Oops; fi' >>> Are these supposed to be follow-up patches? Preparatory steps that

[PATCH] push: Alias pushurl from push rewrites

2013-03-18 Thread Rob Hoelz
posed to pushInsteadOf values for expanding the pushurl alias. This commit fixes that. Signed-off-by: Rob Hoelz --- remote.c | 2 +- t/t5516-fetch-push.sh | 81 +++ 2 files changed, 82 insertions(+), 1 deletion(-) diff --git a/

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-18 Thread Rob Hoelz
On Sun, 17 Mar 2013 16:35:59 -0700 Junio C Hamano wrote: > Rob Hoelz writes: > > > git push currently doesn't consider pushInsteadOf when > > using pushurl; this tests and fixes that. > > > > If you use pushurl with an alias that has a pushInsteadOf > &g

Re: [PATCH] push: Alias pushurl from push rewrites

2013-03-18 Thread Rob Hoelz
On 3/18/13 12:35 AM, Junio C Hamano wrote: > Rob Hoelz writes: > >> git push currently doesn't consider pushInsteadOf when >> using pushurl; this tests and fixes that. >> >> If you use pushurl with an alias that has a pushInsteadOf configuration >> value

[PATCH] push: Alias pushurl from push rewrites

2013-03-17 Thread Rob Hoelz
thub: [url "git://github.com/myuser/"] insteadOf = mygithub: [url "g...@github.com:myuser/"] pushInsteadOf = mygithub: [remote "origin"] url = github:organization/project pushurl = mygithub:project Signed-off-by: Rob Hoelz --- remote.c

Re: [PATCH] remote..pushurl does not consider aliases when pushing

2013-03-17 Thread Rob Hoelz
On Sun, 17 Mar 2013 15:14:32 -0700 Junio C Hamano wrote: > Rob Hoelz writes: > > > Hi everyone! I found a bug in Git today and wrote up a fix; I did > > my best to conform to the rules layed out in > > Documentation/SubmittingPatches, but please let me know if I need &

[PATCH] remote..pushurl does not consider aliases when pushing

2013-03-17 Thread Rob Hoelz
ine I modified. I hope my commit messages explain the problem I encountered well enough; if not, I can always go back and amend them. Patches follow. -Rob >From 5007b11e86c0835807632cb41e6cfa75ce9a1aa1 Mon Sep 17 00:00:00 2001 From: Rob Hoelz Date: Sun, 17 Mar 2013 21:49:20 +0100 Subject: [P

Re: Problems with repack during push

2012-09-10 Thread Rob Marshall
OK, thanks. I'll check with the guy who set up the server. Rob On 9/10/12 12:26 PM, Matthieu Moy wrote: Rob Marshall writes: If I do a 'git repack' it works fine, so are these messages coming from the remote server? I guess so, and your remote server has a restricted envi

Problems with repack during push

2012-09-10 Thread Rob Marshall
s fine, so are these messages coming from the remote server? Thanks, Rob -- 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

git checkout -b following git reset --hard pitfall

2012-09-09 Thread Maris, Rob
hen a "modified" state is not committed: "warning: Your local changes to the following files are no longer associated with the previous branch:" -Rob git version 1.7.11 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to maj