github - Are the remote and centralized repository the same thing in git? -
they seem synonyms, can't tell quite yet.
basing off subversion vs. dvcs debate here.
maybe.
remote repositories fundamental feature of git (though can use git without remote). "central" repositories matter of project organization.
a remote git repository repository other local one; can push, pull, , fetch local repo.
if have number of developers working on project, each 1 have or own local repository, , might have single "central" repository each developer can push , pull. can give advantages of non-distributed dcvs while still letting each developer make local changes. "central" repository remote repository each of developers. (it needs "bare" repo, since can't push non-bare repo.)
with central repository, can have single definitive location defines current state of project. other organizations possible; example, developers can share changes sending each other pull requests.
Comments
Post a Comment