zoukankan      html  css  js  c++  java
  • git初始化仓库相关

    当我们需要新建一个git项目会遇到的问题

    全局设置
    git config --global user.name "名字"
    git config --global user.email "邮件账户"
    
    现在git上新建仓库了,需要与本地的进行关联
    git clone git地址
    cd userFeedback
    touch README.md
    git add README.md
    git commit -m "add README"
    git push -u origin master
    
    本地先新建仓库,需要和远端进行关联
    cd existing_folder
    git init
    git remote add origin git地址
    git add .
    git commit -m "Initial commit"
    git push -u origin master
    
    Existing Git repository
    cd existing_repo
    git remote rename origin old-origin
    git remote add origin git地址
    git push -u origin --all
    git push -u origin --tags
  • 相关阅读:
    MySQL
    php抽象类和接口
    php面向对象三大特征
    php面向对象
    Git
    css3属性
    数据渲染
    ajax(2)
    ajax笔记
    作用域面试题
  • 原文地址:https://www.cnblogs.com/54td/p/10275887.html
Copyright © 2011-2022 走看看