Introducing G2.ai, the future of software buying.Try now
Waydev
Sponsored
Waydev
Visit Website
Product Avatar Image
Git

By Git

Re-claim Profile

Re-claim your company’s G2 profile

This profile hasn’t been active for over a year.
If you work at Git, you can re-claim it to keep your company’s information up to date and make the most of your G2 presence.

    Once approved, you can:

  • Update your company and product details

  • Boost your brand's visibility on G2, search and LLMs

  • Access insights on visitors and competitors

  • Respond to customer reviews

  • We’ll verify your work email before granting access.

Re-claim
Waydev
Sponsored
Waydev
Visit Website

Git Reviews & Product Details

Git Product Details

Value at a Glance

Averages based on real user reviews.

Time to Implement

1 month

Return on Investment

6 months

Waydev
Sponsored
Waydev
Visit Website

Git Media

Git Demo - Git
Git
Git Demo - Git
Git
Git Demo - Git
Git
Product Avatar Image

Have you used Git before?

Answer a few questions to help the Git community

Git Reviews (494)

View 1 Video Reviews
Reviews

Git Reviews (494)

View 1 Video Reviews
4.7
494 reviews

Search reviews
View Filters
Filter Reviews
Clear Results
G2 reviews are authentic and verified.
Gaurav J.
GJ
Senior Software Engineer
Enterprise (> 1000 emp.)
"Best Tool For Developer (Git)"
What do you like best about Git?

For me, Git’s greatest strength lies in its ability to combine flexibility with reliability. As a distributed version control system, it allows each developer to maintain a complete copy of the project history locally, which not only accelerates workflows but also minimizes dependence on a central server. Its lightweight branching and merging make it easy to experiment, so feature branches, hotfixes, and pull request-based reviews fit seamlessly into team routines. The detailed commit history serves as an auditable and searchable log of changes, aiding in debugging, code reviews, and the transfer of knowledge. When you add Git’s extensive tooling and integrations—such as CI/CD pipelines, code review platforms, hooks, and the powerful command-line interface—it becomes clear why Git is suited for everything from individual projects to large, cross-functional teams. All in all, it’s robust, fast, and essential for modern software development. Review collected by and hosted on G2.com.

What do you dislike about Git?

Git is powerful, but a few things frustrate me:

Steep learning curve & confusing concepts — staging, rebasing, and detached HEAD are easy to get wrong without practice.

Cryptic CLI errors — error messages aren’t always helpful, which makes debugging Git issues time-consuming.

Merge conflicts — resolving complex conflicts (especially across large refactors) can be error-prone.

History rewriting risks — commands like' git rebase' or' git push --force' can accidentally lose work if not used carefully.

Poor handling of large binary files — repositories with big binaries grow fast unless you use Git LFS.

Submodules and monorepos — they add considerable operational complexity.

Mitigations I use: training + docs for teammates, protected branches and PRs, git-lfs for binaries, clear branching policies, GUI tools for conflict resolution, and automation (CI) to catch mistakes early Review collected by and hosted on G2.com.

Sai Nikhil Chakravarthy N.
SN
SAP Consultant
Mid-Market (51-1000 emp.)
"Best Choice for Managing Code: My Git Experience"
What do you like best about Git?

What I like most about Git is its ability to track every change in a project with precision, making it easy to collaborate and roll back to previous versions when needed. Its branching and merging features allow multiple people to work on different parts of the code simultaneously without conflicts, and the distributed nature ensures I always have a complete local copy of the repository. This flexibility, combined with powerful integration options, makes it an indispensable tool for any development workflow. Review collected by and hosted on G2.com.

What do you dislike about Git?

What I dislike about Git is that it can be intimidating for beginners due to its command-line complexity and the variety of commands to learn. Resolving merge conflicts can sometimes be confusing, especially in large projects, and remembering less frequently used commands often requires looking up documentation. Review collected by and hosted on G2.com.

Eashan G.
EG
Quality analyst
Information Technology and Services
Small-Business (50 or fewer emp.)
"Best tool to coloborate with team and easy to manage code base for Automation testing"
What do you like best about Git?

I like its simplicity and easy to use and speed, git never hangs, very easy to install and integratre with other tools like VS code Review collected by and hosted on G2.com.

What do you dislike about Git?

No issue I found all perfect in this toll Review collected by and hosted on G2.com.

Luca P.
LP
✅ CTO - Growth Marketer full stack #MarTech | ⚡️ SaaS Advisor
Marketing and Advertising
Small-Business (50 or fewer emp.)
"Distributed version control system for collaborative development"
What do you like best about Git?

• Distributed Architecture: Git implements a distributed version control model, meaning every contributor has a complete copy of the repository, including its full history. This architecture supports offline work, robust branching, and seamless collaboration across teams and geographies.

• Performance and Scalability: Operations such as committing, branching, merging, and comparing versions are optimized for speed and efficiency, even with large repositories. Git’s underlying algorithms are tailored to handle real-world source code trees and frequent change patterns.

• Advanced Branching and Merging: Creating, switching, and merging branches is lightweight and fast. Git’s branching model encourages non-linear development and parallel workflows, making it well-suited for feature-driven development and complex release cycles.

• Data Integrity: Every change in Git is tracked using cryptographic hashes (SHA-1), ensuring the integrity of the repository’s history. The snapshot-based model makes it impossible to alter past versions without detection.

• Toolkit-Based Design: Git provides a comprehensive set of command-line tools, allowing granular control over repository management and automation. The modular structure supports scripting and custom workflows.

• Cross-Platform and Protocol Support: Git repositories can be published and accessed over multiple protocols, including HTTP, HTTPS, SSH, and FTP. Compatibility with legacy systems and IDEs is facilitated through features like CVS emulation.

• Open Source and Community-Driven: Git is free, open-source software maintained under the GPL-2.0-only license. Its active community ensures ongoing development, extensive documentation, and broad integration with other tools and platforms (such as GitHub, GitLab, Bitbucket).

• Space Efficiency and Compression: Git uses delta compression and packfiles to efficiently store large histories and minimize disk usage, with periodic garbage collection and repacking for optimal performance.

• Staging Area: The staging area (index) provides granular control over which changes are included in each commit, supporting precise version management. Review collected by and hosted on G2.com.

What do you dislike about Git?

Handling of large binary files is inefficient. Git is optimized for text-based source code; storing large binaries can quickly bloat repositories and degrade performance unless additional tools (like Git LFS) are used. Review collected by and hosted on G2.com.

Aashish G.
AG
Full Stack Developer
Small-Business (50 or fewer emp.)
"Review of git"
What do you like best about Git?

Git helps to solve the problem of version control. It smooths the process of software development. The branching feature, PR, commit, Pr reviews, staging, CI/Cd are something that i admire the most. Review collected by and hosted on G2.com.

What do you dislike about Git?

I like all things about git; however, I still want to add AI features in the git , Review collected by and hosted on G2.com.

Verified User in Internet
UI
Mid-Market (51-1000 emp.)
"If you wrire code and a SCM are you really a developer?"
What do you like best about Git?

Git gives you all the tools for for managing your code, both since user and with a big team.

Run it local, push to server or why not multiple servers Gif has your covered. Review collected by and hosted on G2.com.

What do you dislike about Git?

Git might take some time to get use too, bit it is well worth it. Review collected by and hosted on G2.com.

KHIM L.
KL
Sr. DevOps Engineer
Enterprise (> 1000 emp.)
"Very useful to track code changes"
What do you like best about Git?

I like best about Git is its distributed version control system, which allows multiple developers to work on the same project simultaneously without interfering with each other’s work. The branching and merging capabilities are powerful, enabling experimentation and feature development without affecting the main codebase. Review collected by and hosted on G2.com.

What do you dislike about Git?

I dislike most about Git is its steep learning curve, particularly for beginners. Concepts like merging, rebasing, and branching can be confusing and prone to errors for those new to version control. Review collected by and hosted on G2.com.

Ranu S.
RS
Software Developer, AI and ML Engineer.
Information Technology and Services
Small-Business (50 or fewer emp.)
"Old and Gold"
What do you like best about Git?

With git I can connect with any of the open and close code repository like Github, GitLab, bitbucket. Open source and easy to install and configure with any editor or sommand line tool. Avaiable accross all Operating systems like Mac, windows or linux. Using it almost evryday in my life. Review collected by and hosted on G2.com.

What do you dislike about Git?

As of now I don't see any proper git GUI interface. I heard from my friends about new repo managing tools. But I am sticking to git for now. Review collected by and hosted on G2.com.

Sasikumar R.
SR
Senior Software Engineer
Enterprise (> 1000 emp.)
"Essential & Efficient Repository Server for every developer"
What do you like best about Git?

Version control for each code merge or push

Light weight and easy to install

Easy to revert or fetch old code

Cherry-pick the changes is very helpful

Open source

Storage management

Multiple features to handle branches and repository Review collected by and hosted on G2.com.

What do you dislike about Git?

Difficult to understand and use for beginners

Need to remember and familiar with git commands to expertise all the git features

UI is not good

Git comparision needs another app Review collected by and hosted on G2.com.

Amiket G.
AG
Software Test Engineer II
Mid-Market (51-1000 emp.)
"Using GIt is easy and provides peace of mind for versioning."
What do you like best about Git?

It's seemless intergation with any operating system. The ease of use and it's GUI is very helpful. Review collected by and hosted on G2.com.

What do you dislike about Git?

Complexity of Branch management, learning curve for someone who is new to tech world. Review collected by and hosted on G2.com.

Pricing Insights

Averages based on real user reviews.

Time to Implement

1 month

Return on Investment

6 months

Average Discount

16%

Git Comparisons
Product Avatar Image
Azure DevOps Server
Compare Now
Product Avatar Image
Subversion
Compare Now
Product Avatar Image
AccuRev
Compare Now