zoukankan      html  css  js  c++  java
  • 我的github代码添加

    1.创建一个新的repository:

    echo "# backupVim" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/fankcoder/xxx.git git push -u origin master

    2.更新项目(新加了文件):

    $cd ~/pywork
    $git add .                  #这样可以自动判断新加了哪些文件,或者手动加入文件名字
    $git commit              #提交到本地仓库
    $git push origin master    #不是新创建的,不用再add 到remote上了
    3.更新项目(没新加文件,只有删除或者修改文件):
    $cd ~/hello-world
    $git commit -a          #记录删除或修改了哪些文件
    $git push origin master  #提交到github
    4.忽略一些文件,比如*.o等:
    $cd ~/hello-world
    $vim .gitignore     #把文件类型加入到.gitignore中,保存
    然后就可以git add . 能自动过滤这种文件
    5.clone代码到本地:
    $git clone git@github.com:WadeLeng/hello-world.git
    假如本地已经存在了代码,而仓库里有更新,把更改的合并到本地的项目:
    $git fetch origin    #获取远程更新
    $git merge origin/master #把更新的内容合并到本地分支
    6.撤销
    $git reset
    7.删除
    $git rm  * # 不是用rm
    #------------------------------常见错误-----------------------------------
    1.$ git remote add origin git@github.com:WadeLeng/hello-world.git
     错误提示:fatal: 远程已经存在 origin .
     解决办法:$ git remote rm origin

     然后在执行:$ git remote add origin
    https://github.com/fankcoder/xxx.git
    #就不会报错误了
     2. $ git push origin master
     错误提示:error:push 失败
     解决办法:$ git pull origin master #先把远程服务器github上面的文件拉先来,再push 上去。
     
  • 相关阅读:
    WSGI详解
    WSGI、flup、fastcgi、web.py的关系
    全面解读python web 程序的9种部署方式
    python对web服务器做压力测试并做出图形直观显示
    6个最佳的开源Python应用服务器
    用 Python 脚本实现对 Linux 服务器的监控
    浅谈图片服务器的架构演进
    Python中使用Flask、MongoDB搭建简易图片服务器
    流行python服务器框架
    搜索引擎技术之概要预览
  • 原文地址:https://www.cnblogs.com/frankcoder/p/4797152.html
Copyright © 2011-2022 走看看