dugite
dugite copied to clipboard
Elegant bindings for working with Git in your Node applications
See comments inline
Bumps [got](https://github.com/sindresorhus/got) from 9.6.0 to 11.8.5. Release notes Sourced from got's releases. v11.8.5 Backport security fix https://github.com/sindresorhus/got/commit/861ccd9ac2237df762a9e2beed7edd88c60782dc CVE-2022-33987 https://github.com/sindresorhus/got/compare/v11.8.4...v11.8.5 v11.8.3 Bump cacheable-request dependency (#1921) 9463bb6 Fix HTTPError missing .code property...
Hello! I am one of numerous NixOS maintainers, and am currently packaging one of numerous Dugite users. Is there a way to disable downloading of Dugite's binaries with an environment...
Been a while since I messed with dugite and had forgotten a few steps.. figured I would help my future self out. :)
First I tried this, something like this: ``` temp.mkdirSync('desktop-git-clone-and-cancel') ... const result = GitProcess.execTask( ['clone', '--', 'https://github.com/maifeeulasad/maifeeulasad.github.io', '.'], testCancelRepoPath, options ) expect(await result.cancel()).toBe(GitTaskCancelResult.successfulCancel) ``` But it gave me: **exitCode ›...
Two of the slow tests are failing on `expect(result).toBe(GitError.HTTPSAuthenticationFailed)`. The result is `8` instead of `3`. This happens at line 50 and 115. A dump of the result says the...
This was uncovered in https://github.com/desktop/desktop/issues/7103 and to summarize the problem: - a `git pull` with `pull.rebase` is run - local commits are encountered, which need to be rebased on top...
We have a `spawnAndComplete` that's been pretty stable for a while in GitHub Desktop: https://github.com/desktop/desktop/blob/master/app/src/lib/git/spawn.ts It'd be nice to enhance the base `GitProcess.spawn` with whatever Desktop needs for v2.
The infamous @paulcbetts tweeted [this](https://twitter.com/paulcbetts/status/965423178464993280) at me: > You should steal https://github.com/surf-build/surf/pull/75/files#diff-c7ba9741682b21471b9c2842c396f106R18 for Dugite, it's a bit more Ergonomic of a function Here's the snippet: ```ts let askPassPath: string; export...