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
4.7 out of 5 stars

How would you rate your experience with Git?

Git Reviews & Product Details

Value at a Glance

Averages based on real user reviews.

Time to Implement

1 month

Return on Investment

6 months

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 (518)

View 1 Video Reviews
Reviews

Git Reviews (518)

View 1 Video Reviews
4.7
518 reviews

Review Summary

Generated using AI from real user reviews
Users consistently praise Git for its reliable version control and efficient collaboration features, which facilitate teamwork and code management. The ability to easily create branches and track changes allows developers to work simultaneously without conflicts. However, many note a steep learning curve for beginners, making initial use challenging.
Search reviews
Filter Reviews
Clear Results
G2 reviews are authentic and verified.
Alec B.
AB
Incoming Real Time Analytics Engineering Intern
Hospitality
Small-Business (50 or fewer emp.)
"Version Control Couldn't be Easier"
What do you like best about Git?

Git is fast and easy to use. On windows, I can easily log into my git server and clone the repository to my own hard drive. Do my work, edit as I please then seamlessly push it back to the repository and allow it to be updated. Git checks to make sure you pull before pushing, allowing for any user to avoid destroying a project with errors and conflicts.

Git also allows you to go back to any previous push by any user and look at and modify the files when they were in that state. This allows for rolling back updates if fatal flaws are found or if a feature needs to be removed for any other reason. Review collected by and hosted on G2.com.

What do you dislike about Git?

Windows lacks SSH keys and command line so Git programs must be installed and if using an outside server like github, some patience and time must be committed to setting up your PC to connect using Git. Review collected by and hosted on G2.com.

Verified User in Computer Software
UC
Mid-Market (51-1000 emp.)
"Great tool"
What do you like best about Git?

Git is a great tool to use for development. Makes collaboration between developers a breeze. Review collected by and hosted on G2.com.

What do you dislike about Git?

Merges can be troublesome sometimes. The automatic merge can be more intelligent. Review collected by and hosted on G2.com.

Aidan G.
AG
Machine Learning Intern
Internet
Small-Business (50 or fewer emp.)
"Best version control"
What do you like best about Git?

By far the most customizable and versatile version management system available. The feature set is massive and extremely useful. Review collected by and hosted on G2.com.

What do you dislike about Git?

The large file handling is very poor. Sometimes the system can be confusingly setup. More warnings before extreme actions would be helpful. Review collected by and hosted on G2.com.

Eduardo S.
ES
CTO
Information Technology and Services
Small-Business (50 or fewer emp.)
"The best distributed version control system I've ever used"
What do you like best about Git?

The learning curve is not big, It is simple enough to get started and powerful enough for more advanced usage. I love the ease of branching, rebasing and merging. Review collected by and hosted on G2.com.

What do you dislike about Git?

The submodules feature is pretty lacklustre, I wish it was easier/more reliable. Review collected by and hosted on G2.com.

Verified User in Human Resources
UH
Enterprise (> 1000 emp.)
"source control review"
What do you like best about Git?

easy to learn and full of command linedd Review collected by and hosted on G2.com.

What do you dislike about Git?

sometimes hard to understand some commands Review collected by and hosted on G2.com.

Verified User in Computer Software
GC
Mid-Market (51-1000 emp.)
"Powerful put not easy to use."
What do you like best about Git?

Multi options to control large get of people doing work, via branching. Review collected by and hosted on G2.com.

What do you dislike about Git?

Not easy to use as a file tracker software, man ways to work with it, but not always easy read checkin to main repo details. Review collected by and hosted on G2.com.

Noah G.
NG
Sr Data Architect
Mid-Market (51-1000 emp.)
"Very happy with Git. Vastly superior to Subversion."
What do you like best about Git?

My favorite feature of git by far is its ability to manage multiple branches and merge them in when they are complete. Also, 'git status' is beautiful in its simplicity and ease to generally know exactly what you've done. With 'git status' I can quickly determine whether all of my changes are staged and make sure that nothing I didn't want done got added to my commit. Review collected by and hosted on G2.com.

What do you dislike about Git?

The command line tools are SO powerful that I often find it difficult to know exactly how to accomplish certain tasks. Specifically when trying to revert a bad commit, do I use 'revert' or 'reset' ? Actually what is the difference between 'reset' and 'revert' ? Review collected by and hosted on G2.com.

Mid-Market (51-1000 emp.)
"The leading SCM tools"
What do you like best about Git?

Git provides amazing SCM features such as rollback, merge and commit history. Review collected by and hosted on G2.com.

What do you dislike about Git?

Perhaps its massive amount of command, which is kind of hard for beginners. Review collected by and hosted on G2.com.

Seth K.
SK
Lead Web Developer
Internet
Enterprise (> 1000 emp.)
"Powerful with a learning curve"
What do you like best about Git?

Git's branching model is the best of the version control systems-- lightweight branches that can be switched and merged at will. It's also very fast and diskspace-light because of the way it stores only incremental changes for each commit. It's easy to move along the commits in your branch if you need to return to an earlier point in history, for example to create a new hotfix branch. Review collected by and hosted on G2.com.

What do you dislike about Git?

It's evident that git has grown organically-- there are lots of warts. There's little consistency between commands, errors can be cryptic, and the documentation isn't great. Using a git client like SourceTree or Tower abstracts a lot of the pain away, though. For the most powerful commands you'll still need to get comfortable with the client.

It can be easy for new users to think that they've lost commits during certain operations like rebasing. We've had to train people not to freak out and start resetting their branches if merges go wrong-- git still has your commits, they're just detached from the tree. Review collected by and hosted on G2.com.

Terry N.
TN
Assistant Programming Instructor
Higher Education
Mid-Market (51-1000 emp.)
"Fast, lightweight, and portable version control system"
What do you like best about Git?

Git alone is incredibly simple to set up in no time at all. All you have to do is install it, open up a command prompt, make a new folder, and type "git init" to create a repository. Committing requires that you specify a name and e-mail address to identify with, and with that, you'll already have a repository that's ready to go. Forming, closing, and merging separate branches of development is a breeze.

While Git itself is a complete tool, it is also capable of interfacing with third party tools like P4Merge for handling diffs and merge conflicts. Review collected by and hosted on G2.com.

What do you dislike about Git?

While it is capable of storing and managing different versions of binary assets, the size of the repository will begin to grow at an alarming rate as more iterations or assets are stored. Other solutions such as git-fat, Dropbox, or sheer symlinks simply off-load the binary assets onto external storage services, such as Amazon AWS.

The flexibility and efficiency afforded by not having all actions checked against a server can also be a downfall: there is nothing stopping you from accidentally editing the same file as another user. 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

20%

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