zoukankan      html  css  js  c++  java
  • github怎样改动源代码并进行提交方法小结

    /*********************************************************************
     * Author  : Samson
     * Date    : 04/26/2014
     * Test platform:
     *              3.11.0-12-generic #19-Ubuntu
     *              GNU bash, version 4.2.45
     * *******************************************************************/

    下面是github怎样改动源代码并进行提交方法小结:

    主要是针对从网上下载的代码进行了改动后,怎样提交改动后的代码到github服务器上的方法:

    #Get you project from github:

    v0id@eof ~/code $ git clone https://github.com/*******.git

    v0id@eof ~/code $ git status




    #modify file by your need, and update github source.

    v0id@eof ~/code $ git add your_file_changed_version

    #commit modify file or resource

    v0id@eof ~/code $  git commit -a -m "update java  for delete"


    #push commit to github server.

    v0id@eof ~/code $  git push


    #enter your github user name and pw.
查看全文
  • 相关阅读:
    Node.js获得SQL Server驱动及更好的Windows工具
    二进制文件存取示例(VB&VBA)
    AmigaOS 4.1 Update 6 发布
    树形数据编号重排的通用存储过程
    谷歌升级云数据库:更多的储存及更快的读取
    nginx+keepalive主从 双机热备 + 自动切换解决方案
    sql导出mysql
    非UNICODE字段修改为UNICODE字段的可行性分析
    ipset 6.16.1 发布,网络设置工具
    Puppy Linux 5.4 "Precise" 发布
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10536550.html
  • Copyright © 2011-2022 走看看