zoukankan      html  css  js  c++  java
  • git命令

    Git global setup
    git config --global user.name "liguangchaojava"
    git config --global user.email "liguangchaojava@163.com"
    
    Create a new repository
    git clone https://code.aliyun.com/liguangchaojava/test.git
    cd test
    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 https://code.aliyun.com/liguangchaojava/test.git
    git add .
    git commit
    git push -u origin master
  • 相关阅读:
    PatentTips
    PatentTips
    PatentTips
    Xvisor ARM32 启动分析
    PatentTips
    PatentTips
    PatentTips
    PatentTips
    PatentTips
    PatentTips
  • 原文地址:https://www.cnblogs.com/growingpains/p/8267900.html
Copyright © 2011-2022 走看看