https://github.com/git/git
Revision 550e41c43733a3dd35a53365a6509c28cbb3906a authored by Junio C Hamano on 18 October 2017, 05:18:58 UTC, committed by Junio C Hamano on 18 October 2017, 05:18:58 UTC
"git archive", especially when used with pathspec, stored an empty
directory in its output, even though Git itself never does so.
This has been fixed.

* rs/archive-excluded-directory:
  archive: don't add empty directories to archives
2 parent s aec2eb8 + 4318094
Raw File
Tip revision: 550e41c43733a3dd35a53365a6509c28cbb3906a authored by Junio C Hamano on 18 October 2017, 05:18:58 UTC
Merge branch 'rs/archive-excluded-directory' into maint
Tip revision: 550e41c
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substitution_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top