Earlier quoted context omitted.
Wait, what exactly happens in that last one that I shouldn't dare do?
I should have written: git branch --set-upstream origin/foo This counter-intuitively creates a LOCAL (!) branch named origin/foo which tracks the current branch. I would expect this to set the upstream of the current branch, given that most commands operate on the current branch unless otherwise specified. Instead it does something completely unexpected and useless.
Git 1.8.0
41–50 of 54 posts
Re: Git 1.8.0
#42Why in the Release Notes do they use the verb "learned" to describe adding a command line option to a feature? "git cherry-pick" learned the "--allow-empty-message" option It's not like Git has obtained sentience and has started to teach itself new tricks, though that would be an interesting development. I understand what they are trying to say I just thought the choice of verb and subject was odd, leaving out the de…
"git cherry-pick" acquired the "--allow-empty-message" option
or
"git cherry-pick" now has the "--allow-empty-message" option
myself. I think the subject is fine with the emphasis where it belongs. The verb is weird, though.
Re: Git 1.8.0
#43Re: Git 1.8.0
#44Re: Git 1.8.0
#45Does someone have more info on this: A credential helper for Win32 to allow access to the keychain of the logged-in user has been added.
See man 7 gitcredentials on how to set it up.
Re: Git 1.8.0
#46Re: Git 1.8.0
#47Seems to be back up. I assume they waived the rate limit. curl --head https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.0.txt HTTP/1.1 200 OK Server: nginx Date: Mon, 22 Oct 2012 05:32:02 GMT Content-Type: text/plain; charset=utf-8 Connection: keep-alive Status: 200 OK X-Runtime: 14 X-RateLimit-Limit: 100 Content-Length: 1 X-Frame-Options: deny Cache-Control: no-cache X-RateLimit-Remaining: 100
X-RateLimit-Limit? Sounds redundant.
X-RateLimit-reset-at
X-RateLimit-remaining
etc, so X-RateLimit- works as a sort of namespace.Re: Git 1.8.0
#48Awesome, now when and where do I download it for Windows??? "Please checkout the source and build it yourself" - wtf.
Re: Git 1.8.0
#49Earlier quoted context omitted.
I'm surprised they don't exempt high profile public projects from limits like that. Git being hosted on Github is hugely beneficial to their image. Any roadblocks should be eliminated for VIPs, especially if the consequence is just a few bucks more in bandwidth bills.
We actually don't care about rate limits with this type of raw request. The limits are in place because people (usually porn sites) hot link js/css/image assets which can lead quickly to an insane number of requests. If file extensions could be used to determine whether a resource could be used like this, we'd only apply the rate limits to those. Browsers don't care about extensions or event content types though. The…
I'd like to be surprised by that but I'm not.
Re: Git 1.8.0
#50> "git branch --set-upstream" is deprecated and may be removed in a relatively distant future. "git branch [-u|--set-upstream-to]" has been introduced with a saner order of arguments. It would be great if changes to the git CLI were thoroughly thought through instead of one-off fixes like this. This is the reason the interface is such a mess. git branch foo --track origin/foo But if you forgot --track: git branch foo…