Linus Björklund
Linus Björklund
> I met the same problem and trying to install `libstdc++-4.9-dev` but errors: > > ```shell > jiji@play:~/downloads/git$ sudo apt-get install libstdc++-4.9-dev > Reading package lists... Done > Building dependency...
> @ianhattendorf @implausible @weedz > can you help me to check this pr? Not a maintainer but can confirm things seems to work after updating all dependencies to the latest...
Maybe related to https://github.com/nodegit/nodegit/issues/1839 (or maybe that is just for electron), ~~although it works fine for me. Node v16.0.0 on Linux (PopOS 20.04). Tested with nodegit@next and nodegit@latest.~~ Thought i...
> > `npm i [email protected]` does work, so I think this issue can be closed once 0.28.0 is released! > > Is that version stable? The repo hasn't been updated...
@fcamarro As Julien said, this has nothing to do with nodegit. It's related to your git repository. But to solve your problem you need to commit your changes (`git commit...
I do not think this issue is directly related to nodegit but instead to your webpack-config. And more precisely to the `webpack-asset-relocator-loader` plugin (I think the template `--template=typescript-webpack` auto installs...
I think you first need to create a reference to the upstream branch. In my app I'm doing something similar to: ```typescript async function setUpstream(repo: Repository, local: string, remoteRefName: string...
I did a quick test and noticed that both `Branch.setUpstream` and `remote.push` returned undefined, but it still seems to work since the branch was successfully pushed to github. Might be...
`Tag` can extend the `HTMLElement` interface. Something like: ```typescript interface Tag extends HTMLElement { att$: (name: string, value: string) => Tag onclick$: (callback: (this: GlobalEventHandlers, ev: MouseEvent) => Tag) =>...
As stated in https://github.com/electron/remote/blob/main/docs/migration-2.md you now need to call `remoteMain.initialize()` and then `remoteMain.enable(win.webContents)` to enable the remote module. Just tested this with [email protected] and no problems: ```javascript import { initialize,...