git_远程仓库

# git_远程仓库
 
# 命令举例:
    # 1.推送本地到远程库,最开始要输入的两行命令:
        $ git remote add origin [email protected]:Clausding/demo.git
        $ git push -u origin master
    # 2.推送本地到远程库:
        $ git push origin master
    # 3.克隆远程库到本地
        $ git clone [email protected]:Clausding/demo.git

  

猜你喜欢

转载自www.cnblogs.com/mexding/p/9003559.html