懵懂的菜鸟

Stay hungry,Stay foolish.

导航

2017年9月6日 #

git ssh创建秘钥

摘要: git是分布式的代码管理工具,远程的代码管理是基于ssh的,所以要使用远程的git则需要ssh的配置。 github的ssh配置如下: 一 、 设置git的user name和email: $ git config --global user.name "xuhaiyan" $ git config 阅读全文

posted @ 2017-09-06 15:50 懵懂的菜鸟 阅读(893) 评论(0) 推荐(0)

Git 安装和使用教程

摘要: git 提交 全部文件 git add . git add xx命令可以将xx文件添加到暂存区,如果有很多改动可以通过 git add -A .来一次添加所有改变的文件。注意 -A 选项后面还有一个句点。 git add -A表示添加所有内容, git add . 表示添加新文件和编辑过的文件不包括 阅读全文

posted @ 2017-09-06 14:36 懵懂的菜鸟 阅读(237117) 评论(22) 推荐(45)

Windows sql语句正则匹配导出数据到本地 The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

摘要: 尝试使用 into outfile导出数据的时候出现错误: The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 方法一:查看本地允许导出目录 mysql> 阅读全文

posted @ 2017-09-06 09:39 懵懂的菜鸟 阅读(508) 评论(0) 推荐(0)

sql语句语句中的正则查找

摘要: 举例: select tncl_id from tncl where tncl_id regexp'^0065'; 有一表,数据有10万多条,其中某列数据示例如下: 100000-200000-300001 100000-200000-300002 100000-200001-300003 1000 阅读全文

posted @ 2017-09-06 09:17 懵懂的菜鸟 阅读(1033) 评论(0) 推荐(0)