mac下的环境准备

时间 2019/5/14 8:55:22 加载中...

安装版本管理器SVN客户端

由于使用的是Mac电脑,不能安装 TortiseSVN,只能找Mac端的SVN客户端

smartSVN

下载地址:https://pan.baidu.com/s/1H5x04wnGRGhMhpHnhkMaag
密码:xlko

破解
下载的安装包中有一个license文件,破解时可以直接选择此文件。

远程Liunx服务器和文件上传

Mac电脑下可以直接使用其自的终端工具即可。

通过命令 ssh root@192.168.1.1 来连接服务器

文件传输

1、文件传输简单的方式是安装 FileZilla
2、通过 sftp 命令来传输

先通过命令 sftp root@192.168.1.1 来连接服务器

下载文件
get file.txt
get apache-tomcat-8.5.34.tar.gz /Users/adminqian

上传文件
put file.txt
put apache-tomcat-8.5.34.tar.gz /Users/adminqian

sftp 支持常见的ls命令等。如果查看的是本地的目录,加一个 l 即可。如 lls 查看的是本地的目录。

安装IDEA

官方下载IDEA即可。
破解地址:
http://idea.lanyus.com/

配置IDEA的maven为阿里云仓库
(建议不要使用内置的Maven)

通过查看IDEA的 Preferences 中的Maven配置得知,IDEA默认使用的内置的Maven。

修改这个 settings.xml 文件即可。

默认情况下是看不到.m2文件夹的,使用 终端将文件 Copy进去即可

settings.xml

  1. <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  2. <mirrors>
  3. <!-- mirror | Specifies a repository mirror site to use instead of a given
  4. repository. The repository that | this mirror serves has an ID that matches
  5. the mirrorOf element of this mirror. IDs are used | for inheritance and direct
  6. lookup purposes, and must be unique across the set of mirrors. | -->
  7. <mirror>
  8. <id>nexus-aliyun</id>
  9. <mirrorOf>central</mirrorOf>
  10. <name>Nexus aliyun</name>
  11. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  12. </mirror>
  13. <mirror>
  14. <id>nexus-aliyun-thirdparty</id>
  15. <mirrorOf>thirdparty</mirrorOf>
  16. <name>Nexus aliyun thirdparty</name>
  17. <url>http://maven.aliyun.com/nexus/content/repositories/thirdparty/</url>
  18. </mirror>
  19. </mirrors>
  20. <profiles>
  21. <profile>
  22. <id>default</id>
  23. <repositories>
  24. <repository>
  25. <id>nexus</id>
  26. <name>local private nexus</name>
  27. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  28. <releases>
  29. <enabled>true</enabled>
  30. </releases>
  31. <snapshots>
  32. <enabled>false</enabled>
  33. </snapshots>
  34. </repository>
  35. </repositories>
  36. <pluginRepositories>
  37. <pluginRepository>
  38. <id>nexus</id>
  39. <name>local private nexus</name>
  40. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  41. <releases>
  42. <enabled>true</enabled>
  43. </releases>
  44. <snapshots>
  45. <enabled>false</enabled>
  46. </snapshots>
  47. </pluginRepository>
  48. </pluginRepositories>
  49. </profile>
  50. </profiles>
  51. </settings>

IDEA 连接 TFS

注意添加 Server 时候的写法

地址处要写上完整的地址,而不能只是个IP地址。
登录名处只写上账号即可,不要加斜杠前面的部分。

安装Navicate

安装包
链接:https://pan.baidu.com/s/1BwsQH7-nA-YO7DbJkkLj-A
密码:8euz

汉化包
链接:https://pan.baidu.com/s/1YUEgUPqBV5HdQUk3Y2JztQ
密码:9gyc

步骤
安装Navicat Premium
选中Navicat Premium快捷方式,右键展开菜单
点击显示包内容
解压汉化包
将解压出的zh-Hans.lproj放入/Contents/Resources

原文:https://blog.csdn.net/enoch612/article/details/82110518

安装OneNote

如何输入账号后,后面一直加载不出来,不用管,直接输入密码,回车即可。

扫码分享
版权说明
作者:SQBER
文章来源:http://www.sqber.com/articles/mac-develop-prepared.html
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。