F
F
Firear292014-09-20 22:36:07
Java
Firear29, 2014-09-20 22:36:07

What version control system is most commonly used in Java today?

In web development, most gravitate toward Git. It is good if the team members are separated and work remotely, and not in the office, "under the hood" of a corporation that tries to keep everything in one place and under its full control. But Git still has one drawback: when modifying files from commit to commit, the Git repository "swells" more than the SVN repo. It turns out that corporations should love SVN more. And how is it really? - What do corporate Java developers use more often - Git or SVN?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
U
UbuRus, 2014-09-22
@Firear29

Obviously, git is the future, check out Github :) In my company, new projects use only git.

N
NightFantom, 2014-09-20
@NightFantom

The question is fundamentally wrong. VCS is chosen not based on the programming language. There are several concepts of SLE operation. What you like best, then you choose. My personal recommendation is GIT.
1) There is no hard binding to the central server.
2) Work in several commands is more conveniently implemented. (On the level of ideology)
PS I used both Git and SVN.

N
Nazar Mokrinsky, 2014-09-21
@nazarpc

Git repository "swells" more than SVN repo

This is an architecture level difference - one stores full copies of files, and the other diffs. But creating branches and reverting to any commit in Git works instantly.

F
Firear29, 2014-09-23
@Firear29

@UbuRus - You ended up answering my question. - By the way, I also prefer Git, but everything is determined by corporate standards, and it was important for me to find out the actual state of affairs. Thanks

R
relgames, 2014-11-24
@relgames

Git is much more convenient. And it is "swelling" that is a plus for me personally: sometimes vpn breaks, but all branches and revisions are local, and this is not a problem. Plus, it's much more convenient to work with brunches.
There are also disadvantages: it takes some time to get used to. The first couple of months you will spit and regret that you switched to git.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question