上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 74 下一页
  2016年9月12日
摘要: Synchronizing the states of local and remote repositories consists of pulling from and pushing to the remote repositories. SmartGit also has a Synchro 阅读全文
posted @ 2016-09-12 09:21 莫水千流 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 'Normal' Merge In case of a normal merge, a merge commit with at least two parent commits (i.e., the last from the current branch and the last from th 阅读全文
posted @ 2016-09-12 09:07 莫水千流 阅读(1580) 评论(0) 推荐(0) 编辑
摘要: The Rebase command allows you to apply commits from one branch to another. Rebase can be viewed as more powerful version of Cherry-Pick, which is opti 阅读全文
posted @ 2016-09-12 09:06 莫水千流 阅读(1272) 评论(0) 推荐(0) 编辑
  2016年9月9日
摘要: 目录 Git诞生历史 Git环境准备 Git安装部署 Git常用命令 Git基本操作 Git管理分支结构 Git管理标签 GitLab安装部署 GitHub托管服务 Git客户端工具 1 Git诞生历史 我 想大家还记得Linus torvalds在1991年时发布了Linux操作系统吧,从那以后L 阅读全文
posted @ 2016-09-09 18:39 莫水千流 阅读(3569) 评论(0) 推荐(0) 编辑
摘要: Git是分布式的代码管理工具,远程的代码管理是基于SSH的,所以要使用远程的Git则需要SSH的配置。 github的SSH配置如下: 一 、 设置Git的user name和email: $ git config --global user.name "xuhaiyan" $ git config 阅读全文
posted @ 2016-09-09 16:41 莫水千流 阅读(316) 评论(0) 推荐(0) 编辑
  2016年9月8日
摘要: 系统编程中一个重要的方面就是有效地处理与内存相关的问题。你的工作越接近系统,你就需要面对越多的内存问题。有时这些问题非常琐碎,而更多时候它会演变成一个调试内存问题的恶梦。所以,在实践中会用到很多工具来调试内存问题。 在本文中,我们将讨论最流行的开源内存管理框架 VALGRIND。 摘自 Valgri 阅读全文
posted @ 2016-09-08 10:28 莫水千流 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 总结 1、'''作用: 可以表示 "多行注释" 、"多行字符串" 、"其内的单双引号不转义" 2、r 代表的意思是: raw 3、r 只对其内的反斜杠起作用(注意单个 \ 的问题) raw string 有什么用处呢? raw string 就是会自动将反斜杠转义。 >>> print('\n') 阅读全文
posted @ 2016-09-08 08:52 莫水千流 阅读(11494) 评论(0) 推荐(2) 编辑
摘要: fopen <cstdio> FILE * fopen ( const char * filename, const char * mode ); Open file Opens the file whose name is specified in the parameter filename a 阅读全文
posted @ 2016-09-08 08:38 莫水千流 阅读(4602) 评论(0) 推荐(0) 编辑
  2016年9月6日
摘要: [csharp] view plain copy print? using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; 阅读全文
posted @ 2016-09-06 15:37 莫水千流 阅读(6515) 评论(0) 推荐(1) 编辑
摘要: 在C#中,直接在子线程中对窗体上的控件操作是会出现异常,这是由于子线程和运行窗体的线程是不同的空间,因此想要在子线程来操作窗体上的控件,是不可能 简单的通过控件对象名来操作,但不是说不能进行操作,微软提供了Invoke的方法,其作用就是让子线程告诉窗体线程来完成相应的控件操作。 要实现该功能,基本思 阅读全文
posted @ 2016-09-06 15:28 莫水千流 阅读(5799) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 74 下一页