zoukankan      html  css  js  c++  java
  • git工作中总结

    # 1、克隆到本地
    git clone url
    git clone -b 分支 url
    # 注意:克隆完成后,要删除.git隐藏文件夹
    
    # 2、修改代码
    
    # 3、生成master
    git init
    git status
    git add .
    git commit -m 'test'
    
    # 4、起别名
    git remote add origin url
    git branch  # 查看分支
    
    # 5、push代码到分支
    git push origin master:dev_wt
  • 相关阅读:
    HDU-1205
    HDU-2033
    HDU-2032
    HDU-2031
    HDU-2030
    HDU-2029
    HDU-2028
    HDU-2027
    HDU-2026
    HDU-2025
  • 原文地址:https://www.cnblogs.com/wt7018/p/12026117.html
Copyright © 2011-2022 走看看