My git setup has a central repository to which I push. Today I decided to look at the central repository using Git Extensions, and it said that the rep
(not a complete answer, but at least some clues, and a workaround)
That error message comes from the sha1_file.c, method check_packed_git_idx(),
nr = 0;
index = idx_map;
if (version > 1)
index += 2; /* skip index header */
for (i = 0; i < 256; i++) {
uint32_t n = ntohl(index[i]);
if (n < nr) {
munmap(idx_map, idx_size);
return error("non-monotonic index %s", path);
}
nr = n;
}
with ntohl function being:
The ntohl function converts a
u_longfrom TCP/IP network order to host byte order (which is little-endian on Intel processors).The
ntohlfunction returns the value supplied in thenetlongparameter with the byte order reversed. Ifnetlongis already in host byte order, then this function will reverse it. It is up to the application to determine if the byte order must be reversed.The
ntohlfunction takes a 32-bit number in TCP/IP network byte order (theAF_INETorAF_INET6address family) and returns a 32-bit number in host byte order.
It is called by:
See the structure of a pack file in the SO question "Is the git binary diff algorithm (delta storage) standardized?":

The first one is also called by builtin/fsck.c, so you can try a git fsck --full --progress, in order to check if you have a local corruption of your pack files, or if it actually is a remote repo issue.
Make sure you can replicate the issue on different OS and/or different version of Git.
The usual workaround, for a (here "Netduino") repo which seems to be forked around on GitHub, is to:
push --force back to one's own fork, in order to erase/reset the remote history by one with can be packed correctlyI was searching for info in this kind of non-monolitic error and found this link: http://git.661346.n2.nabble.com/Error-non-monotonic-index-after-failed-recursive-quot-sed-quot-command-td7575014.html
TL;DR: you remove the non-monolotic index and then reindex it. In linux it would be:
> rm .git/objects/pack/pack-29a18084cf61cd0322a6e9cfd485ce0977348c53.idx
> git index-pack .git/objects/pack/pack-29a18084cf61cd0322a6e9cfd485ce0977348c53.pack
After this I had to run some git gc --prune=now and git remote prune origin, but I had done some other operations before so I may have spoiled my repo.