ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • SVN으로 github 사용법
    툴/SVN 2014. 5. 12. 13:00
    반응형

    [ git 처음 생성 ]

    mkdir github1

    cd github1

    touch README.md

    git init

    git add README.md

    git commit -m "first commit"

    git remote add origin https://github.com/sungback/mygit1.git

    git push -u origin master


    [ git 정보 변경 ]

    echo ‘Hello World’ > README.md

    git add README.md

    git commit -m "second commit"

    git push -u origin master


    [ git 복사해오기 (clone) ]

    cd ..

    git clone https://github.com/sungback/mygit1.git

    cd mygit1

    README.md 수정 -- welcome to my world

    git status

    git add *

    git commit -m "third commit"

    git push -u origin master


    [ git 변경 정보 가져오기 ]

    cd ..

    cd github1

    git pull

    반응형

    ' > SVN' 카테고리의 다른 글

    Git reberse vs merge  (0) 2015.05.21
    위도 경도 계산법  (3) 2014.05.12
Designed by Tistory.