-
git version must be >= 2.34. Earlier versions don't support
gpg.format ssh
(signing commits with ssh keys).If you're printing signature keys in git log by using
%GK %GF %GP %GT
ingit.format.pretty
, earlier versions will crash when doinggit log
with following error:BUG: gpg-interface.c:284: bad signature
-
OpenSSH version must be >= 8.8. Earlier versions don't support
valid-after,valid-before
options.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.FileVisitor; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.nio.file.SimpleFileVisitor; | |
import java.nio.file.attribute.BasicFileAttributes; | |
import java.util.ArrayList; |