Philip Oakley
Philip Oakley
> I'm not sure what did you mean but all the emojis available on GitHub should be in this cheat sheet. Thanks. I was hoping that maybe you had a...
The code for this check is in `\git\git-gui\lib\database.tcl` #L91-115 or [here](https://github.com/prati0100/git-gui/blob/master/lib/database.tcl#L91-L115) ``` proc hint_gc {} { set ndirs 1 set limit 8 if {[is_Windows]} { set ndirs 4 set limit...
The [original code](https://github.com/prati0100/git-gui/commit/88520cadf902c8bc780394e1ddecc726534c3df9) for those checks is 2009, so about 13 years old. There has been a lot of updates in the main Git code since then, so it's probably...
You could clone the `git gui` repo and make the [suggestable] changes yourself, and then, once proven as satisfactory, use GitHub's gui to provide a PR. The git-gui already uses...
> If I am in git-gui and press the push button, I don't think the git-gui respects the `push.default` in the sense that the dialog pane won't [does not appear...
> Yes, this is one of the 5 allowed options of `git config push.default` Ah, thanks. I was miss-remembering the setup for setting the push default to be different from...
I think the place to add the checks is [C:\git-sdk-64\usr\src\git\git-gui\lib\transport.tcl#L176](https://github.com/prati0100/git-gui/blob/master/lib/transport.tcl#L176-L181) (mine /GithubURL ;-) The task, get the current branch name, and then it's (push) remote, if it has one. Then...
> protections against "trojan source injection" >> "Unicode has support for both left-to-right and right-to-left languages, and to aid writing left-to-right words inside a right-to-left sentence (or vice versa) it...
> the ability to stash _just_ the unstaged changes, leaving the staged changes as they are? (been off-line 2 wks) Yes {qualified}. After the notional `git stash --unstaged-only` the user...
> > It's quite common for people (self included) to checkout some commit (detached head) or branch (named head) and do some investigation resulting in changes that later they want...