zoukankan      html  css  js  c++  java
  • (转)如何将本地git仓库中的代码上传到github

    1,  在github上新建一个仓库,比如为:CSS3Test,仓库地址为:https://github.com/hyuanyuanlisiwei/CSS3Test

    2,本地git仓库中的文件项目为CSSTest

    3, 将本地仓库上传到远程仓库:

        运行命令:

        新项目则:git init

        已有git的项目:git remote rm origin

        接着    

        git remote add origin https://github.com/hyuanyuanlisiwei/CSS3Test

        (这之前你也可以用git remote -v来查看当前的git地址)

        上面的地址是浏览器的目录,不是带有.git的url

        但是gitosc也可以是.git的url

        然后git add .

        git commit -m "first push"

        git push -u origin master

        此外还有强制推送的命令:git push -u origin master -f

    http://www.cnblogs.com/hyylsw/p/6850310.html

  • 相关阅读:
    s2-032批量脚本
    javascript 1
    threading模块和queue模块实现程序并发功能和消息队列
    Python标准库06 子进程 (subprocess包)
    常用服务对应的正则
    re
    requests
    198. 打家劫舍
    746. 使用最小花费爬楼梯
    70. 爬楼梯
  • 原文地址:https://www.cnblogs.com/guazi/p/6850836.html
Copyright © 2011-2022 走看看