svn - Git Compatibility Switches? -
does git provide compatibility switch match workflow of, example, subversion? hoping git -svncompat checkout
, git -svncompat checkin
. know git has other svn related switches.
i hope compatibility there because checkout/change/checkin workflow great me - simple (it matches mental model) , closely follows tasks (its workflow). plus, matches particular project's central repository model (versus distributed versioning model).
just in case: many others before me, have work git repository , use git - have no choice. rtfm out of question @ moment. have 2500 pages of reading do, won't have time read book on git couple of months. (not meant start war - circumstance @ moment).
jeff
as others have pointed out, answer question "no".
however, don't need read entire book on git, in order going.
there's documentation tailored people you, coming subversion , wanting (or having) use git:
https://git.wiki.kernel.org/images-git/7/78/git-svn-cheatsheet.pdf (that's single page printout , glue desk first couple of days)
as workflow, git
isn't different seem expect: checkout, edit, checkin:
the main difference is, git, these things local on machine, , need steps around synch external repository: pull, checkout, edit, checkin, push
(the real differences start when comes branching , merging)
Comments
Post a Comment