I think Box is great for research teams or anyone that has a large number of files that need to be securely stored. Particularly in the case of social science research, where it is important to protect identifying data, Box is a great option. In cases where teams need a more reliable means for real-time collaboration, I would probably consider a different alternative
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.
The main feature that I like the most in Box is that it makes collaboration seamless, workers can easily check the documents any time and make changes according to the needs.
Box manages and backs up all of your files on its cloud servers, and provides a very nice interface for creating, viewing, editing, and collaborating on the most commonly used file types (PDF, XLS, DOC, etc.).
Over the past few years, Box has built on top of its basic cloud storage management with a host of other tools, such as workflows, AI, monitoring, and analytics.
It is helping us to make good connections with clients and our workers themselves as to its syncing and viewing feature to all is very much helpful and easy to go.
I like the security features and I like the website. It's easy to use and create and move things around as needed. The main reason for a lower rating is because the Box Sync app is just not a good program. It's a memory hog, it's slow, transfer speeds are slow, and it's not the most efficient route. If you have a large Box account and you need to get a computer up to speed on a large amount of data within Box, you are in for the long haul. Last time I had to do this, it took 3 days to sync all of the files and we are talking around 100 GB worth of data
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.
Everything with Box is seamless. It can be integrated into virtually any other software or application. You can even get the app for your phone or tablet to work on the go. File syncing is so quick. The only reason I gave it a 9 is the issue I discussed earlier about the local file application rebooting and not continuing to sync files. Other than that, it's great!
Yeah, it's always worked, I've never had any kind of connection issues, the only issues I've had it I've been on our end when the Internet hasn't worked.
The general operation and management of Box is very efficient, both when accessing the account, and when adding files, downloading or modifying any document directly. The web platform, mobile and desktop versions work really well and quickly, making all the work and process flow smoothly and without setbacks. So far I have not been able to observe any inconvenience
I found their support community lacking in clarity when I experienced a login issue. The error messaging was poor on my Box Sync application. I did not reach out to support staff for help, instead, I reasoned that I should try downloading the Box Sync application again and reinstall it. That fixed my issue, thankfully. I think a less computer-savvy user would've been much more frustrated.
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.
The documentation is good. Since Box is a popular service, there were also a number of YouTube videos and other sources that were helpful as we were considering the product and planning for deployment. Also, the ability to try the free version helped to prepare us.
Be careful with settings. It is easy to get overwhelmed with updates. For example, you don’t want to be updated when doing historical data uploads. I recommend taking off notifications initially and then turn on post you have done your historical data upload.
They are kind of the same. And both of them do their job as promised. But for company and project wise I think that Box slightly wins for some points. Which [makes him] win over Google Drive (don't forget that Google Drive is very easy to use and has a lot [of] nice features too).
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.
Box has been an only positive experience. It provides a seamless way for me and my team to collaborate on documents in such a way where we're not sending the document back/forth via email. It's a huge timesaver.
Box reduces the risk of sharing a sensitive document to the wrong person via email.
Box has provided a platform where my team can share notes in meetings - this has helped streamline and organize our meetings. Our meetings are more productive and actionable.
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.