RAG-Enhanced Commit Message Generation
Linghao Zhang, Hongyi Zhang, Chong Wang, Peng Liang
TL;DR
This paper addresses the challenge of generating high-quality commit messages by introducing REACT, a retrieval-augmented framework that combines a hybrid retriever, input augmentation, and generation with Code Language Models. REACT retrieves an exemplar diff–message pair, augments the query input with this exemplar, and generates the commit message using either PLMs (with fine-tuning) or LLMs (via in-context prompting). Extensive experiments across multiple CLMs and LLMs show substantial improvements over baselines, with CodeT5 achieving a BLEU increase of up to 55% and Llama 3 up to 102% when integrated into REACT, and a within-project case study demonstrating adaptation to project-specific conventions. The work demonstrates the practical value of retrieval-augmented generation for CMG and provides a robust replication setup and broader implications for applying RAG in software engineering tasks.
Abstract
Commit message is one of the most important textual information in software development and maintenance. However, it is time-consuming to write commit messages manually. Commit Message Generation (CMG) has become a research hotspot. Recently, several pre-trained language models (PLMs) and large language models (LLMs) with code capabilities have been introduced, demonstrating impressive performance on code-related tasks. Meanwhile, prior studies have explored the utilization of retrieval techniques for CMG, but it is still unclear what effects would emerge from combining advanced retrieval techniques with various generation models. This paper proposed REACT, a REtrieval-Augmented framework for CommiT message generation. It integrates advanced retrieval techniques with different PLMs and LLMs, to enhance the performance of these models on the CMG task. Specifically, a hybrid retriever is designed and used to retrieve the most relevant code diff and commit message pair as an exemplar. Then, the retrieved pair is utilized to guide and enhance the CMG task by PLMs and LLMs through fine-tuning and in-context learning. The experimental results show that REACT significantly enhances these models' performance on the CMG task, improving the BLEU score of CodeT5 by up to 55%, boosting Llama 3's BLEU score by 102%, and substantially surpassing all baselines.
