Google Workspace enables teams of all sizes to connect, create and collaborate. It includes productivity and collaboration tools for work: Gmail for custom business email, Drive for cloud storage, Docs for word processing, Meet for video and voice conferencing, Chat for team messaging, Slides for presentation building, and shared Calendars.
GIT is good to be used for faster and high availability operations during code release cycle. Git provides a complete replica of the repository on the developer's local system which is why every developer will have complete repository available for quick access on his system and they can merge the specific branches that they have worked on back to the centralized repository. The limitations with GIT are seen when checking in large files.
I find that google workspace covers all the bases that I would need my day to day work solution to offer. Workspace is perfect if you're someone working in sales who regularly sets up and hosts meetings. The meet solution is reliable, the transcription through Gemini is almost always perfect, and the recording function is easy to use. Calendar backs this up well by being simple and easy to use. Although having the ability to share your calendar link for people to book in meetings would elevate this further. You can also never go wrong with Gmail, it is reliable, has strong spam filters and rarely ever goes down. On the flip side, despite Docs, Slides and Sheets covering the basic functionalities that you would need to create a good base level of documents, it does lack some advanced functionalities that other providers offer. Especially in Sheets, I use sheets regularly for importing and exporting data for cold outreach, it works perfectly fine for this, but if you were looking to start creating dashboards etc using sheets as the base for this, it can start to get a bit tricky and limited.
Google Calendar...amazing. I don't need to ask team members when they're busy anymore and play this game of bouncing times back and forth. All I need to do is enter their email address and it shows my calendar and theirs side by side and then select the day and time I find that works best for the both of us.
I actually prefer Google Meet over Zoom. Zoom bogs down my computer and I find their UI overcomplicated for what it actually does. Google Meet is simple and does practically everything Zoom does without needing to pay any extra money.
Sheets integrates with our CRM (Copper) so it's perfect for us. Being able to export information out of our CRM into sheets and then create pivot tables from that data makes our lives a million times better.
Pricing is a little bit higher than other services
The cost of each email inbox costs the same whether you want just email or all of the features. For example, we wanted a support email address that we could setup our support desk with. The cost of that added account is the same as the account I use with all of the features.
They removed their free tier for small organizations like mine and restricted the free tier from adding new domain names. This was likely due to abuse, but everyone lost the privilege of the free service.
Git has met all standards for a source control tool and even exceeded those standards. Git is so integrated with our work that I can't imagine a day without it.
There is no better solution for cloud storage and real time collaboration. The amount of features included in G Suite is unmatched and out of other things we’ve tried over the years, nothing comes close to being as great of a tool.
On the user end, it's great, probably some of the most user friendly products out there. On the admin side, it can get a little more arcane, but it's still better than a lot of other services. At worst I wrangle some CSVs to perform mass changes, but it's a far cry from the days of Powershell scripts or purely manual entry.
I am not sure what the official Git support channels are like as I have never needed to use any official support. Because Git is so popular among all developers now, it is pretty easy to find the answer to almost any Git question with a quick Google search. I've never had trouble finding what I'm looking for.
My experiences of getting support have been positive. Calling in is not overly difficult, but it does require getting a PIN. The knowledge of those responding to the calls has been impressive. I have managed to work with them to fix two Google bugs that I had identified. These bugs required a some technical expertise and the support staff were able to understand the issue and forward the concerns to the appropriate persons. The first bug was fixed with 24 hours. The second bug took a little longer, but it was also more complicated to reproduce.
I've used both Apache Subversion & Git over the years and have maintained my allegiance to Git. Git is not objectively better than Subversion. It's different. The key difference is that it is decentralized. With Subversion, you have a problem here: The SVN Repository may be in a location you can't reach (behind a VPN, intranet - etc), you cannot commit. If you want to make a copy of your code, you have to literally copy/paste it. With Git, you do not have this problem. Your local copy is a repository, and you can commit to it and get all benefits of source control. When you regain connectivity to the main repository, you can commit against it. Another thing for consideration is that Git tracks content rather than files. Branches are lightweight and merging is easy, and I mean really easy. It's distributed, basically every repository is a branch. It's much easier to develop concurrently and collaboratively than with Subversion, in my opinion. It also makes offline development possible. It doesn't impose any workflow, as seen on the above linked website, there are many workflows possible with Git. A Subversion-style workflow is easily mimicked.
There are lots of competitors to various tools in Workspace, like Meet versus Zoom. However, Microsoft is the other big competitor I can think of for Google Workspace as a whole. To me, at least, the strength of Workspace is how easy it is to share and collaborate with others. For items that I only need for myself and can keep on my own computer, I typically rely on Microsoft Word, Excel, etc. For items that I need to share, I turn to Workspace a lot. Being able to collaborate in real-time and not having to send documents back and forth is so amazing, and such a time saver. And I love that Workspace is also a built-in tool with Dropbox now.
Git has saved our organization countless hours having to manually trace code to a breaking change or manage conflicting changes. It has no equal when it comes to scalability or manageability.
Git has allowed our engineering team to build code reviews into its workflow by preventing a developer from approving or merging in their own code; instead, all proposed changes are reviewed by another engineer to assess the impact of the code and whether or not it should be merged in first. This greatly reduces the likelihood of breaking changes getting into production.
Git has at times created some confusion among developers about what to do if they accidentally commit a change they decide later they want to roll back. There are multiple ways to address this problem and the best available option may not be obvious in all cases.