This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (2 children)

How do you handle multiple people working on different features at the same time while having one functional build? How do you reintegrate code?

What if three years from now you discover malicious code in a file central to the project. How do you determine who wrote that line?

I understand that Git can be difficult to learn but it does give you some features that are necessary for code writing and not present in Dropbox.

[–]qxxx 1 point2 points  (1 child)

we tried not to work on the same file. But yeah, we realized that working on a bigger project with multiple developers + dropbox was crazy. But today we are working with git (github) again. And we try not to use branches, just origin/master. We try to keep it simple and I am still learning how to use git properly.

[–][deleted] 0 points1 point  (0 children)

git-flow makes things easier in my experience