Skip to content

An AI-powered Git commit summarizer using Google Gemini AI, designed to generate clear, concise, and context-aware commit messages. Analyzes git diffs, highlights key changes, and provides meaningful summaries for better version control.

Notifications You must be signed in to change notification settings

GitDaksh/GitFlow

Repository files navigation

GitFlow - AI-Powered GitHub Web App

GitFlow Logo License: MIT

🌟 Features

  • 🤖 AI-powered git commit summarization using Google's Gemini AI
  • 📝 Generates clear, concise, and meaningful commit summaries
  • 🔍 Understands complex code changes and provides context-aware descriptions
  • ⚡ Fast and efficient processing of git diffs
  • 🎯 Focuses on the most important changes in each commit

🚀 Getting Started

Prerequisites

  • Node.js (v14 or higher)
  • npm or yarn
  • A Google Gemini API key

Installation

  1. Clone the repository:
git clone https://github.com/GitDaksh/GitFlow.git
cd GitFlow
  1. Install dependencies:
npm install
# or
yarn install
  1. Set up your environment variables: Create a .env file in the root directory and add your Gemini API key:
GEMINI_API_KEY=your_api_key_here

Usage

import { aiSummariseCommit } from './src/lib/gemini';

// Example usage
const diff = `your git diff here`;
const summary = await aiSummariseCommit(diff);
console.log(summary);

🛠️ Built With

📝 Example Output

The AI will generate summaries like:

* Made firstName and lastName fields optional in User model [prisma/schema.prisma]
* Added new API endpoint for user authentication [src/routes/auth.ts]
* Updated database schema to include user preferences [prisma/migrations/xxx.sql]

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

👥 Authors

  • Your Name - Initial work

🙏 Acknowledgments

  • Google Gemini AI team for their amazing API
  • The open-source community for their invaluable tools and libraries

About

An AI-powered Git commit summarizer using Google Gemini AI, designed to generate clear, concise, and context-aware commit messages. Analyzes git diffs, highlights key changes, and provides meaningful summaries for better version control.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages