Skip to content

Commit

Permalink
Merge pull request FredrikNoren#414 from mattkatz/master
Browse files Browse the repository at this point in the history
Provide git version override check reminder
  • Loading branch information
FredrikNoren committed Jul 29, 2014
2 parents b482382 + 234666e commit a749fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ungit
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function verifyGitVersion(callback) {
}
var version = versionSearch[1];
if (!semver.satisfies(version, requiredVersion)) {
callback('Ungit requires git version ' + requiredVersion + ', you are currently running ' + version);
callback('Ungit requires git version ' + requiredVersion + ', you are currently running ' + version +'. Start ungit with --gitVersionCheckOverride (or set that option to true in your .ungitrc) to override this check. ');
} else {
callback();
}
Expand Down

0 comments on commit a749fcf

Please sign in to comment.