Skip to content

Commit

Permalink
Merge branch 'mm/lockfile-error-message'
Browse files Browse the repository at this point in the history
* mm/lockfile-error-message:
  lockfile: improve error message when lockfile exists
  lockfile: mark strings for translation
  • Loading branch information
Junio C Hamano committed Apr 3, 2016
2 parents fbebb5c + aed7480 commit 3b8c4b7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lockfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,15 @@ static int lock_file_timeout(struct lock_file *lk, const char *path,
void unable_to_lock_message(const char *path, int err, struct strbuf *buf)
{
if (err == EEXIST) {
strbuf_addf(buf, "Unable to create '%s.lock': %s.\n\n"
"If no other git process is currently running, this probably means a\n"
"git process crashed in this repository earlier. Make sure no other git\n"
"process is running and remove the file manually to continue.",
strbuf_addf(buf, _("Unable to create '%s.lock': %s.\n\n"
"Another git process seems to be running in this repository, e.g.\n"
"an editor opened by 'git commit'. Please make sure all processes\n"
"are terminated then try again. If it still fails, a git process\n"
"may have crashed in this repository earlier:\n"
"remove the file manually to continue."),
absolute_path(path), strerror(err));
} else
strbuf_addf(buf, "Unable to create '%s.lock': %s",
strbuf_addf(buf, _("Unable to create '%s.lock': %s"),
absolute_path(path), strerror(err));
}

Expand Down

0 comments on commit 3b8c4b7

Please sign in to comment.