加载中
无法枚举容器中的对象,访问被拒绝

解决方法 在待操作的文件夹,右键,属性,安全标签,高级 弹出窗口显示当前文件夹的所有者,选择修改,弹出选择用户或用户组窗口。 在文本框中输入当前用户名(当前用户应该是管理器才行) ...

2013/12/02 09:19
9.7W
mysql 批量导入文件夹下的所有sql文件

首先新建一个main.sql,然后在main.sql文件里面这么写: <!-- lang: sql --> source C:/sql/1.sql; source C:/sql/2.sql; source C:/sql/3.sql; 编辑好后,再 source main.sql ,mysql就会稀...

2013/11/05 14:09
2.3K
使普通的powershell 都带有github的环境

Here is the recipe for PowerShell noobs like me: Edit or create Microsoft.PowerShell_profile.ps1 in active user's Documents\WindowsPowerShell folder (create the folder if it doe...

git reset

<!-- lang: shell --> #回退所有内容到上一个版本 git reset HEAD^ #回退a.py这个文件的版本到上一个版本 git reset HEAD^ a.py #向前回退到第3个版本 git reset --soft HEAD~3 ...

2013/09/05 20:39
248
javascript 运算符 技巧

Javascript 双感叹号判断, 两等号 三等号 区别

git on windows 需要执行的命令

<!-- lang: shell --> git config --global core.filemode false git config --global core.autocrlf true 第一句是忽略文件权限的改动。 第二句是将文件checkout时自动把LF转成CRLF,che...

解决UnicodeDecodeError: 'ascii' codec can't decod...

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position xxxx ascii codec can't decode byte 0xe8 in position 0:ordinal not in range(128) 原因分析:字符问题。在Windo...

没有更多内容

加载失败,请刷新页面

返回顶部
顶部