
mac or linux 命令
jintemp
四海之内都朋友。能够在自己的领域里有所增长、有所学习。
展开
-
linux or mac 简单定制命令(svn 批量处理命令)
vim ~/.bash_profile#定制命令BEGINalias ls="ls -G"alias ll="ls -l"alias cdres="cd /Users/jintemp/Desktop/code/res"#定制命令ENDsvn命令批量提交修改代码: svn st | grep M | awk '{print $2}' | xargs svn ci -m"task:80 批量提交修改代...原创 2016-10-07 23:19:43 · 563 阅读 · 0 评论 -
Permission denied (publickey). fatal: Could not read from remote repository.
git clone git@gitee.com:XXXX/XXXXX.gitCloning into 'XXXXX'...Permission denied (publickey).fatal: Could not read from remote repository. 解决方案:git config --global user.name "yourname"git con...原创 2018-09-15 17:12:33 · 3372 阅读 · 3 评论 -
您需要安装旧 Java SE 6运行环境才能打开Eclipse
当Mac上使用adt-bundle-mac-x86_64-20140702 版本的Eclipse。当安装的Java SDK为1.7或者1.8 的版本时,会提示 您需要安装旧 Java SE 6运行环境才能打开Eclipse。解决方案如下:选中Eclipse 应用程序。右键显示包内容。直接执行Contents/MacOS/eclipse 即可。采用shell终端运行eclipse即可正常打开ec...原创 2018-11-25 14:13:16 · 3095 阅读 · 1 评论 -
nginx 的一些常见使用
nginx的web路径:This is the default index.html page that is distributed with nginx on Fedora. It is located in /usr/share/nginx/htmlnginx的配置路径:You should now put your content in a location of your c...原创 2018-12-10 10:48:15 · 1843 阅读 · 0 评论