上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页
SSH Secure File Transfer:向Linux系统传输文件工具 SSH Secure Shell :Linux命令行执行工具,提供了远程命令执行 SecureCRT: 是常用远程执行Linux命令行工具 Read More
posted @ 2016-04-30 16:45 jeffery1010 Views(251) Comments(0) Diggs(0) Edit
EControl5.0ssh://mygit@192.168.6.70/ISRL/SPDH/EControl.gitPTSssh://mygit@192.168.6.70/ISRL/ISaints/pts.gitSEH FAMSssh://mygit@192.168.6.70/ISRL/SEH/fa Read More
posted @ 2016-04-29 14:49 jeffery1010 Views(153) Comments(0) Diggs(0) Edit
场景: 1.搭建Ok了一git服务器 2.本机上的现有源码,现在想纳入git源码管理 操作: 1.服务器上创建了工程仓库 git init 2. 客户端使用tortoisegit添加并提交要纳入源码管理的项目,推送远程 ssh://mygit@192.168.6.70/ISRL/SPDH/ECont Read More
posted @ 2016-04-29 14:27 jeffery1010 Views(1797) Comments(0) Diggs(0) Edit
receive.denyCurrentBranch 这是由于git默认拒绝了push操作,需要进行设置,修改.git/config添加如下代码: [receive] denyCurrentBranch = ignore 或者执行 $ git config 'receive.denyCurrentBr Read More
posted @ 2016-04-29 12:37 jeffery1010 Views(579) Comments(0) Diggs(0) Edit
反射应用场景大致有两种情况(假设要反射的对象封装在一个类库中) 无论哪种情形,调用反射方法,首先要搞清楚,反射方法到什么位置找到实例化的对象 反射方法分为以下几种方法 Assembly assembly = Assembly.LoadFile("程序集路径,不能是相对路径"); // 加载程序集(E Read More
posted @ 2016-04-27 19:44 jeffery1010 Views(123) Comments(0) Diggs(0) Edit
可能原因为,工程更改名称 进入工程bin目录下,删除所有文件即可 Read More
posted @ 2016-04-27 14:09 jeffery1010 Views(853) Comments(0) Diggs(0) Edit
http://blog.itpub.net/13651903/viewspace-1082730/ Read More
posted @ 2016-04-26 18:20 jeffery1010 Views(144) Comments(0) Diggs(0) Edit
using System; public class BaseClass { int num; public BaseClass() { Console.WriteLine("in BaseClass()"); } public BaseClass(int i) { num = i; Console Read More
posted @ 2016-04-16 09:06 jeffery1010 Views(382) Comments(0) Diggs(0) Edit
mstsc /v:ip /admin Read More
posted @ 2016-04-11 16:54 jeffery1010 Views(2384) Comments(0) Diggs(0) Edit
采用AMD规范 具体来说,就是模块必须采用特定的define()函数来定义;如果一个模块不依赖其他模块,那么可以直接定义在define()函数中; 以扩展全局对象Date为例: define(function(require,exports,module){ var mydate=function( Read More
posted @ 2016-04-04 15:49 jeffery1010 Views(205) Comments(0) Diggs(0) Edit
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页