Devin Rhode

Results 293 comments of Devin Rhode

So, here: https://github.com/desktop/desktop/blob/b3732f6639d417f3d602fd7283508b8382930a6b/app/src/lib/git/rebase.ts#L577 we can see `-c sequence.editor=cat` being used Just above this, `gitEditor` is set to `:`, which is set to `GIT_EDITOR`. - Maybe set `GIT_SEQUENCE_EDITOR` in addition to...

The TLDR is: If a user has GIT_SEQUENCE_EDITOR and sequence.editor set to vscode, it should not interfere with any rebase operations done with github desktop.

I am working on a bugfix now :) I did find that the `sequence.editor` gitconfig setting has no bearing on the issue. Repro: 1. Simply set `GIT_SEQUENCE_EDITOR` to something like...

Hey @steveward, I actually stopped working on this. I thought it'd be easy to jump in and fix quickly, but then I thought about how to update the tests, and...

I was able to fix by using `window.btoa` instead of `btoa`.

FYI - there are ways to use code from a PR branch directly: `yarn add GoldingAustin/xstate#feature/xstate-solidjs` or `npm install GoldingAustin/xstate#feature/xstate-solidjs --save` Then you can provide feedback on what's good/bad/buggy, aiding...

Here's one idea for possible config spec that allows specifying that some tasks run serially, and some run in parallel: ``` "*.@(ts|tsx|js|jsx|mjs|cjs)": [ // This runs first, may change formatting,...

Simply running everything in parallel or serially I think is not the best approach The new config spec/api I mentioned above would allow you to mix and match. (I think...

The config spec also unlocks the ability to interact with each task in targeted ways, because each task is labeled. If you are updating typescript stuff, and simply want to...

> I'm still not sure how you'd cancel specific tasks, though. How the CLI would look like for that? @okonet I am not sure if a git hook could read...