-
I think it's time again to start planning another release. I have a few things that I'd like to wrap up first, but I think we've accumulated enough good changes (:sparkles: reflog updates :sparkles:) …
-
Installer fails because there is not "which" under Windows. I have globally installed python so it should be able to use node-gyp.
Zammy updated
10 years ago
-
This is on OSX Lion latest gitteh (as of 1/24/2012)
Attempting to install via 'npm install gitteh -g'
everything fine until ..
[ 3/11] cxx: src/tree.cc -> build/Release/src/tree_1.o
[ 4/11] cxx: …
-
Has anyone run into this issue that seems to be happening in tree.diffIndex? It happens sporadically -- it seems to occur during garbage collection. My app crashes with:
```
node(16403,0x7fff77c61310…
-
Attempting to perform `cargo build --verbose` on a project with dependencies results in the following error:
```
$ RUST_LOG=debug cargo build --verbose
DEBUG:cargo: executing; cmd=cargo; args=[C:\Use…
-
Attempted to emerge atom on my system from this overlay and got the following build errors:
```
emerge -av atom
These are the packages that would be merged, in order:
Calculating dependencies... d…
-
Using `git` unqualified will cause problems for anyone who doesn't launch Atom from the command line. Use a full path to the executable instead, and let users configure it.
This should eventually be …
-
running apache fork under the different user using mod_python
import pygit2
pygit2.Repository("path/to/repo.git")
ends up with exception "Error stat'ing config file '/root/.gitconfig'"
-
I'm trying to test the new `Merge()` method introduced by libGit2Sharp in the [git-tfs project](https://github.com/git-tfs/git-tfs).
For the moment we call the merge git command and it works well.
He…
-
We use a pattern like this far too often:
```
if (git_func_call() < 0)
return -1;
```
This ends up clobbering the actual error code returned. While playing with some of the http transport stuff…