Steve King
Steve King
Closing as a stale issue, linking to the feature request for a `library` package type for discussion during implementation. #2048
Thanks for the suggestion. If you're up for submitting a pull request, the options are currently parsed in https://github.com/steveukx/git-js/blob/d84dd63812f42d3502fcc6f623998623a322b20b/simple-git/src/lib/tasks/log.ts#L93
When running this as a test: ```typescript import { simpleGit, GitError } from "simple-git"; import { promiseError } from '@kwsites/promise-result'; const repo = 'https://github.com/private/repo.git'; const git = simpleGit().env({ 'GIT_TERMINAL_PROMPT': 0...
Is the intention here to prefix all spawned processes with `flatpak-spawn git` instead of just `git`?
You may be able to use the new functionality for `binary` config to support flatpak: https://github.com/steveukx/git-js/blob/main/docs/PLUGIN-CUSTOM-BINARY.md
Hi, if you are using `GitHub` as your remote, any tag is available as `github.com/user/repo/tags` and automatically have a downloadable zip/tar of the content of the repo in that tag....
Thanks for the patience... I've now merged for you.
Hi & thank you for the 👍, there isn't a parser built into the library that supports the patch (`-p`) response format, which is why the response appears empty... If...
Hi, you can use the two `fetch` and `merge` phases of a `git pull` independently: ``` git.fetch().merge('--no-ff', 'origin/master').catch(err => { // err is a GitResponseError wrapping a MergeResult object with...
Thanks for letting me know... how are you using `--bare`? Is it in a directory you've run `git init --bare`?