11 2017 档案
摘要:sudo cp -ra store_bak/* store/ -r 所有文件循环都复制 -a 带着属性复制过去
阅读全文
摘要:varchar 最长26000多,实际使用最好不要超过255,会占内存 可以考虑text
阅读全文
摘要:在项目地址下面输入:git remote -v 即可查看到地址啦。
阅读全文
摘要:example : git remote add origin http://IP/lion.git
阅读全文
摘要:``` find . -name "klibc" 在当前文件内查找文件 klibc find . -name "*libc*" 在当前文件内查找文件 (模糊查询) ```
阅读全文
摘要:Array ( [a] => red [b] => green [c] => blue )
阅读全文
摘要:git 删除本地分支 git branch -D branch_name
阅读全文
摘要:history |grep mysql-----git history匹配出mysql操作的命令 !626 到mysql命令安装处链接mysql /usr/local/mysql/bin/mysql -uroot -h 123456 -p
阅读全文
摘要:SELECT COUNT(DISTINCT Customer) AS NumberOfCustomers FROM Orders
阅读全文
摘要:Array ( [0] => 111 [1] => 111 [2] => 111 [3] => 111 [4] => 111 [5] => 111 [6] => 111 [7] => 111 [8] => 111 ) Array ( [0] => 111 ) Array ( [0] => 111 ...
阅读全文
摘要:1. MYSQL rename table table1 to table2;
阅读全文
摘要:有时候,phpmyadmin 导入 是有大小限制的; 只可以用sql命令的source来导入文件
阅读全文
摘要:scp /home/wwwroot/default/tf_ment.sql root@IP:/home/wwwroot/default/ 也可以2个服务器之间之间 ``` 在使用mac过程中,通常会发现,rz,sz等命令,没有办法在终端上面使用。这个时候,就需要用到scp命令传输文件,但是很多服务器
阅读全文
摘要:<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -moz-animation
阅读全文
摘要:width: calc(100% - 20px);
阅读全文
摘要:2157 git tag //查看tag 2158 git tag test_tag c809ddbf83939a89659e51dc2a5fe183af384233 //在某个commit 上打tag 2159 git tag 2169 git push origin test_tag //!!!
阅读全文
摘要:$(".meun>div[name='meun_nav']>a").eq(1).on("click",function(){ $("body").animatescroll({ "scrollSpeed":400, "easing":"easeInOutQuart", "padding": -asideTop, }); }); ...
阅读全文