Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-10-10 16:44:27 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-10-10 16:44:27 +0400
commit200118357de47c6db69a48eac2b488bfb46e9026 (patch)
tree57763f9eeb243ae7e071e23c5f5987ec20ceac9c /app/models/commit.rb
parent0189be0831350a5d473884a5b454a10509ff58ce (diff)
Use full commit sha width for reference in note body to prevent Ambiguous SHA1 prefix problem
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 61551df9e27..c30a630429a 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -115,7 +115,7 @@ class Commit
# Mentionable override.
def gfm_reference
- "commit #{short_id}"
+ "commit #{id}"
end
def method_missing(m, *args, &block)