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.
查看全文
  • 相关阅读:
    Vue vue-resource三种请求数据方式pet,post,jsonp
    Vue 各个阶段生命周期函数
    Vue v-if和v-show的使用.区别
    vue v-for循环中key属性的使用
    vue v-for循环使用
    Vue 设置style属性
    Vue 设置class样式
    Vue 双向数据绑定v-model
    Vue的事件修饰符
    关于“svn: Can't connect to host '*.*.*.*': 由于连接方在一段时间后没有正确答复或连接”的解决方法
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10536550.html
  • Copyright © 2011-2022 走看看