A study of 580 shared ChatGPT conversations in GitHub pull requests and issues reveals how developers use the AI tool for code generation, debugging, and collaboration. Researchers identified 16 types of engineering queries and found that over a third of shared interactions are multi-turn, iterative exchanges. The findings show ChatGPT’s growing role in team-based coding — from aiding reviews to fostering transparent, role-specific collaboration — marking a new phase in AI-assisted software development.A study of 580 shared ChatGPT conversations in GitHub pull requests and issues reveals how developers use the AI tool for code generation, debugging, and collaboration. Researchers identified 16 types of engineering queries and found that over a third of shared interactions are multi-turn, iterative exchanges. The findings show ChatGPT’s growing role in team-based coding — from aiding reviews to fostering transparent, role-specific collaboration — marking a new phase in AI-assisted software development.

Lessons on Developer–AI Collaboration From 580 GitHub Conversations

2025/11/12 23:00
8 min read
For feedback or concerns regarding this content, please contact us at [email protected]

:::info Authors

  1. Huizi Hao
  2. Kazi Amit Hasan
  3. Hong Qin
  4. Marcos Macedo
  5. Yuan Tian
  6. Steven H. H. Ding
  7. Ahmed E. Hassan

:::

Abstract

1 Introduction

2 Data Collection

3 RQ1: What types of software engineering inquiries do developers present to ChatGPT in the initial prompt?

4 RQ2: How do developers present their inquiries to ChatGPT in multi-turn conversations?

5 RQ3: What are the characteristics of the sharing behavior?

6 Discussions

7 Threats to Validity

8 Related Work

9 Conclusion and Future Work

References

Abstract

ChatGPT has significantly impacted software development practices, providing substantial assistance to developers in a variety of tasks, including coding, testing, and debugging. Despite its widespread adoption, the impact of ChatGPT as an assistant in collaborative coding remains largely unexplored. In this paper, we analyze a dataset of 210 and 370 developers’ shared conversations with ChatGPT in GitHub pull requests (PRs) and issues. We manually examined the content of the conversations and characterized the dynamics of the sharing behavior, i.e., understanding the rationale behind the sharing, identifying the locations where the conversations were shared, and determining the roles of the developers who shared them.

Our main observations are:

(1) Developers seek ChatGPT’s assistance across 16 types of software engineering inquiries. In both conversations shared in PRs and issues, the most frequently encountered inquiry categories include code generation, conceptual questions, how-to guides, issue resolution, and code review.

(2) Developers frequently engage with ChatGPT via multi-turn conversations where each prompt can fulfill various roles, such as unveiling initial or new tasks, iterative follow-up, and prompt refinement. Multi-turn conversations account for 33.2% of the conversations shared in PRs and 36.9% in issues.

(3) In collaborative coding, developers leverage shared conversations with ChatGPT to facilitate their role-specific contributions, whether as authors of PRs or issues, code reviewers, or collaborators on issues. Our work serves as the first step towards understanding the dynamics between developers and ChatGPT in collaborative software development and opens up new directions for future research on the topic.

Introduction

Recent advances in Foundation Models (FMs) hold considerable promise for automating various software engineering tasks. FM-powered tools like GitHub Copilot 1 , Amazon CodeWhisperer 2 , and OpenAI ChatGPT 3 , are now embraced by many professional software practitioners (Zhang et al., 2023). Such technologies essentially acquire important capabilities based on massive, typically natural-language, data sets and are able to suggest recommendations to software developers, providing source code completion, automatic generation of documentation, or other types of software engineering support.

\ Current research on FMs for software engineering has primarily focused on evaluating the effectiveness of these models, including specialized versions modified through prompt engineering or fine-tuning, against traditional automated software engineering solutions using standard benchmarks (Jiang et al., 2023; Lu et al., 2023; Hou et al., 2023; Siddiq et al., 2023; Deng et al., 2024; Guo et al., 2024). In contrast, a limited number of studies (Vaithilingam et al., 2022; Ziegler et al., 2022; Mozannar et al., 2022; Barke et al., 2023; Liang et al., 2024) have investigated how FM-powered tools are practically employed by software developers within the software development life cycle.

\ Most of these studies focus on GitHub Copilot, an FM-powered code generation tool via small-scale (20-42 participants) user studies or surveys. The usage of ChatGPT in software development encompasses a broader spectrum. Unlike Copilot, which primarily aids in code completion and generation, ChatGPT is designed to generate human-like text based on the received input, i.e., prompt. This makes ChatGPT a more versatile tool that is applicable to a wider range of tasks beyond coding.

\ Despite its potential, there is no research on the dynamics of developer interactions with ChatGPT, the challenges faced, and the opportunities it offers for open-source projects. Moreover, given that modern software systems are crafted by teams rather than isolated individuals, the capacity of ChatGPT to bolster and transform collaborative practices has not been explored. This potential extends well beyond its current use in individual tasks, suggesting a significant yet unexplored impact of FM-powered tools on team-based software development.

\ To fill the gap, we analyze developers’ shared ChatGPT conversations within GitHub issues and pull requests (PRs). We postulate that these shared conversations will not only reveal how developers engage with ChatGPT in the quality assurance of open-source software projects, such as resolving issues, but also uncover the usage of the shared conversation in collaborative coding, such as contributing to PRs and issues. Link sharing was introduced in ChatGPT in May 2023 (OpenAI, 2024b), allowing users to generate a unique URL for a ChatGPT conversation. This feature enables users to share a snapshot of an entire conversation up to the point of the link being shared.

\ Such shared conversations can help highlight important messages, reference discussions for collaborative purposes, or create a point for future reference (OpenAI, 2024a). Figure 1 shows an example of a conversation with ChatGPT being shared within a code review comment on a GitHub pull request. The shared conversation contains one turn - a complete cycle of a developer posing a question or problem and ChatGPT responding.

\ The code reviewer proposed a request asking the pull request author to use a JavaScript library named Day.js to parse and format dates. To demonstrate an example of how Day.js can be utilized, the reviewer asked ChatGPT how to replace a code snippet using Day.js, and ChatGPT responded. Then, the pull request author implemented the suggested code provided by ChatGPT. This example demonstrates the potential benefit of sharing a conversation with ChatGPT in a collaborative coding environment like GitHub.

\ Fig. 1 An example of shared conversations with ChatGPT in a GitHub pull request. Inthe shared conversation, the reviewer asked “Can i replicate this functionality with DayJS?

\ To better understand the characteristics of shared conversations and their implications on collaborative software engineering practice, we manually analyzed a dataset containing 580 shared ChatGPT conversations within GitHub PRs and issues, specifically, 210 in PRs and 370 in issues. Our empirical study addresses the following three research questions (RQs):

==RQ1: What types of software engineering inquiries do developers present to ChatGPT in the initial prompt?== In this RQ, we manually examined the content of all initial prompts, 580 prompts in total, in the collected shared conversations. We developed a taxonomy composed of 16 types of software engineering-related inquiries. The most frequently encountered inquiries are about code generation, addressing conceptual questions, providing how-to guidance, assisting with issue resolution, and conducting code reviews.

\ ==RQ2: How do developers present their inquiries to ChatGPT in multi-turn conversations?== In this RQ, we manually examined how developers interact with ChatGPT in multi-turn conversations, which consist of several rounds of prompts and responses between a developer and ChatGPT. Specifically, we investigated how developers structure their followup prompts subsequent to the initial prompt. We developed a taxonomy composed of seven types of roles a prompt plays within a multi-turn conversation. Our findings reveal that developers actively engage in multiple rounds of interactions with the aim of improving the quality of ChatGPT’s responses. This is primarily achieved through the posting of follow-up questions and the refinement of prior prompts.

==RQ3: What are the characteristics of the sharing behavior?== In this RQ, we investigate the patterns in the sharing behaviors of developers. More specifically, we examine where those conversations are shared by whom and for what purpose. Our analysis reveals that developers utilize shared conversations as a way to complement their role-specific contributions, facilitating a more efficient and transparent collaborative process. The main contributions of this paper are described as follows:

\

  • We present a comprehensive analysis of how developers share their conversations with ChatGPT within the context of open-source projects, particularly focusing on GitHub pull requests and issues. Our study introduces two taxonomies to classify the dynamics of these interactions: one for the types of software engineering inquiries in developers’ prompts and another for the roles of prompts in multi-turn conversations with ChatGPT. To support further research, our replication package contains 580 and 654 manually annotated prompts aligned with these taxonomies.

  • Our study reveals the multifaceted usage of ChatGPT in software engineering. Beyond assisting with technical tasks, we observe the usage of shared conversations to support collaboration among developers in open-source projects.

  • We provide implications for developers and software engineering researchers based on our findings. These implications offer insights to improve the use of FM-powered tools like ChatGPT further in collaborative software development.

    \ We organize the remainder of the paper as follows. Section 2 introduces our dataset. Section 3-5 present methodology and answers to each of the three research questions. Section 6 discusses the implications of findings for practitioners and researchers. Section 7 presents threats to validity, and Section 8 presents related work. Finally, Section 9 concludes the paper.

    \ Fig. 2 Overview of the data collection process for answering three research questions.

:::info This paper is available on arxiv under CC BY-NC-SA 4.0 license.

:::

\

Market Opportunity
Sleepless AI Logo
Sleepless AI Price(SLEEPLESSAI)
$0.03249
$0.03249$0.03249
+18.18%
USD
Sleepless AI (SLEEPLESSAI) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact [email protected] for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

One Of Frank Sinatra’s Most Famous Albums Is Back In The Spotlight

One Of Frank Sinatra’s Most Famous Albums Is Back In The Spotlight

The post One Of Frank Sinatra’s Most Famous Albums Is Back In The Spotlight appeared on BitcoinEthereumNews.com. Frank Sinatra’s The World We Knew returns to the Jazz Albums and Traditional Jazz Albums charts, showing continued demand for his timeless music. Frank Sinatra performs on his TV special Frank Sinatra: A Man and his Music Bettmann Archive These days on the Billboard charts, Frank Sinatra’s music can always be found on the jazz-specific rankings. While the art he created when he was still working was pop at the time, and later classified as traditional pop, there is no such list for the latter format in America, and so his throwback projects and cuts appear on jazz lists instead. It’s on those charts where Sinatra rebounds this week, and one of his popular projects returns not to one, but two tallies at the same time, helping him increase the total amount of real estate he owns at the moment. Frank Sinatra’s The World We Knew Returns Sinatra’s The World We Knew is a top performer again, if only on the jazz lists. That set rebounds to No. 15 on the Traditional Jazz Albums chart and comes in at No. 20 on the all-encompassing Jazz Albums ranking after not appearing on either roster just last frame. The World We Knew’s All-Time Highs The World We Knew returns close to its all-time peak on both of those rosters. Sinatra’s classic has peaked at No. 11 on the Traditional Jazz Albums chart, just missing out on becoming another top 10 for the crooner. The set climbed all the way to No. 15 on the Jazz Albums tally and has now spent just under two months on the rosters. Frank Sinatra’s Album With Classic Hits Sinatra released The World We Knew in the summer of 1967. The title track, which on the album is actually known as “The World We Knew (Over and…
Share
BitcoinEthereumNews2025/09/18 00:02
Data focus shifts to payrolls – Societe Generale

Data focus shifts to payrolls – Societe Generale

The post Data focus shifts to payrolls – Societe Generale appeared on BitcoinEthereumNews.com. Societe Generale analysts note a quiet data calendar ahead of key
Share
BitcoinEthereumNews2026/04/02 17:52
MEXC Chain Observation Daily Day 1

MEXC Chain Observation Daily Day 1

On May 15, 2026, the US Senate Banking Committee passed the CLARITY bill, Winklevoss Twins invested 100 million USD in Gemini via Bitcoin, Coinbase became the official USDC treasury deployer on Hyperliquid, CME planned Nasdaq crypto index futures, and Tether froze over 450 million USD of illicit assets. Industry trends include Consensys delaying its IPO, Kraken switching to Chainlink CCIP, Strive launching a daily dividend security with 13.88 percent yield, and major funding rounds for Onramp, Turnkey, Fasset, and Stitch. MEXC platform data shows top gainers ENM, PEAQ, TROLLSOL and high volume in BTC, ETH, XRP. Upcoming token unlocks for PYTH, Humanity, TON, and MemeCore pose selling pressure. Users are warned against phishing scams and advised to use only official channels.
Share
MEXC NEWS2026/05/15 10:16

KAIO Global Debut

KAIO Global DebutKAIO Global Debut

Enjoy 0-fee KAIO trading and tap into the RWA boom