当前位置:首页>优优资讯 > 软件教程 > 电脑软件教程 > 怎样修改github源码以及提交代码

怎样修改github源码以及提交代码

作者:本站整理 时间:2015-04-15

  GitHub是一个分布式的版本控制系统,推出后在社区项目上取得了很大成功。这也激发了很多程序员学习的兴趣,以下是如何修改github源码以及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.
 

相关文章

相关推荐

最新攻略

用户评论

(已有0条评论)
表情
注:您的评论需要经过审核才能显示哦,请文明发言!
还没有评论,快来抢沙发吧!