[gitHub 실천] git 기초: 원격 창고 사용

1539 단어

[gitHub 실천] git 기초: 원격 창고 사용


저작권 2019.6.2 업데이트
  • git 기초
  • 원격 창고 사용
  • git remote
    #  
    $ git remote #  
    origin # origin 
    $ git remote -v #  git URL
    origin  https://github.com/pengwill/eduSystem.git (fetch) # fetch 
    origin  https://github.com/pengwill/eduSystem.git (push)
    
    #  
    $ git remote add  
  • git fetch [remote-name]
    #  
    # git fetch origin  , 
    
    # git pull  ,git clone  master master 。
  • git push [remote-name] [branch-name]
    #  
    #  , , 
  • git remote show [remote-name]
    #  ( )
    $ git remote show
    origin
    $ git remote show origin
    * remote origin
      Fetch URL: https://github.com/pengwill/eduSystem.git
      Push  URL: https://github.com/pengwill/eduSystem.git
      HEAD branch: master
      Remote branches:
        cfj    tracked
        dev_tp tracked
        master tracked
      Local branch configured for 'git pull':
        master merges with remote master
      Local ref configured for 'git push':
        master pushes to master (local out of date)
  • git remote rename
    #  
    $ git remote rename old new
  • git remote rm
    #  
    $ git remote rm new



  • | 저작권 성명: 특별 설명을 제외하고 본 블로그의 모든 글은 블로거 T.P 오리지널입니다. 전재:https://www.cnblogs.com/tp0829/p/10963165.html

    좋은 웹페이지 즐겨찾기