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.
查看全文
  • 相关阅读:
    C#编程语言详解(第2版) 11.3 类和结构的区别
    .Net程序员如何快速成长之我见
    封装 JMail 4.4 的 POP3 为 .Net 组件 (.dll 程序集),实现 "邮件(附件) 到达" 等 "事件,c#接收邮件
    POJ1163The Triangle
    hdoj_1231&&hdoj_1003最大连续子序列
    数组名++操作导致的_BLOCK_TYPE_IS_VALID
    《windows程序设计》第二章学习心得
    error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
    Windows环境下Unicode编程总结
    已知顺序表L递增有序,写一算法,将X插入到线性表的适当位置,以保持线性表的有序
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10536550.html
  • Copyright © 2011-2022 走看看