diff --git a/README.md b/README.md index e830122b..722c5fec 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Please make sure to take a look at the nicely written [introduction](http://www. * [List remote heads/tags without a local clone](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/ListRemoteRepository.java) * [Fetch from remote repositories](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/FetchRemoteCommits.java) * [Fetch from remote repositories and use 'prune' to remove outdated remote branches/tags](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/FetchRemoteCommitsWithPrune.java) -* [Fetch from remote repositories via ssh protocol](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/FetchRemoteCommitsWithSshAuth.java) +* [Fetch from remote repositories via SSH protocol](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/FetchRemoteCommitsWithSshAuth.java) * [Clone a remote repository via SSH protocol and username/password credentials](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/CloneRemoteRepositoryWithAuthentication.java) * [Rebase onto an upstream branch](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/RebaseToOriginMaster.java) * [Using InMemoryRepository to clone a Git repo in-memory and work from there](https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/CloneRemoteRepositoryIntoMemoryAndReadFile.java) diff --git a/src/main/java/org/dstadler/jgit/porcelain/BlameFile.java b/src/main/java/org/dstadler/jgit/porcelain/BlameFile.java index 01665a9e..2ad77204 100644 --- a/src/main/java/org/dstadler/jgit/porcelain/BlameFile.java +++ b/src/main/java/org/dstadler/jgit/porcelain/BlameFile.java @@ -23,7 +23,7 @@ public static void main(String[] args) throws IOException, GitAPIException { throw new IllegalStateException("Did not find any files at " + new File(".").getAbsolutePath()); } - final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("YYYY-MM-dd HH:mm"); + final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm"); for (String file : list) { if (new File(file).isDirectory()) { continue;