zoukankan      html  css  js  c++  java
  • git检出与创建的过程

    Command line instructions

    Git global setup
    git config --global user.name "bingo"
    git config --global user.email "xxxxx@126.com"
    
    Create a new repository
    git clone http://192.168.20.246/xxx/dm.git
    cd dm
    touch README.md
    git add README.md
    git commit -m "add README"
    git push -u origin master
    
    Existing folder or Git repository
    cd existing_folder
    git init
    git remote add origin http://192.168.20.246/xxx/dm.git
    git add .
    git commit
    git push -u origin master
    
  • 相关阅读:
    11.MySQL
    10、设计模式
    9
    8
    7
    6
    5
    4
    3
    2
  • 原文地址:https://www.cnblogs.com/zhengbing/p/5264735.html
Copyright © 2011-2022 走看看