zoukankan      html  css  js  c++  java
  • 将本地的项目推送到github上

    好像还是不能用git在本地直接建一个repository,然后推送到github,这是把本地项目推送到github上已经建好的裤

    …or create a new repository on the command line
    echo "# learn_c" >> README.md
    git init
    git add README.md
    git commit -m "first commit"
    git remote add origin git@github.com:tuhooo/learn_c.git
    git push -u origin master


    …or push an existing repository from the command line
    git remote add origin git@github.com:tuhooo/learn_c.git
    git push -u origin master

  • 相关阅读:
    cookie操作
    css加载动画...
    三目运算符的运用
    遍历对象长度
    2年
    相亲

    股市周期
    功利心
    思考笔记
  • 原文地址:https://www.cnblogs.com/tuhooo/p/9279278.html
Copyright © 2011-2022 走看看