摘要: git add [commit file list]将已经修改的代码添加索引git commit -m [commit message]将已经索引的代码修改提交至本地的库git push origin [branch_name]将分支 branch_name 的代码推送至服务器git pull or... 阅读全文
posted @ 2014-08-16 21:39 LaoQuans 阅读(143) 评论(0) 推荐(0) 编辑
摘要: /* * remove space, tab and enter(new line) of file * usage : ./rmspace newFile */#includeint main(){ int c,i=0; while((c=getchar())!=EOF) { if... 阅读全文
posted @ 2014-08-16 08:54 LaoQuans 阅读(279) 评论(0) 推荐(0) 编辑