Using git as a centralized version server

后端 未结 5 1177
悲哀的现实
悲哀的现实 2021-02-04 17:21

I currently use svn at work.

Our setup is: everyone has a working copy and we commit to a svn server served by apache2.

So I commit changed, the other update, an

5条回答
  •  清歌不尽
    2021-02-04 18:20

    Git - SVN Crash Course

    Especially this is of interest for a starter

    git init
    git add
    git clone git://...
    git pull
    git fetch
    git push
    

    Then check the rest of the documentation on the git site

    Git documentation

提交回复
热议问题