mac m1 安装开发常用软件

文章目录

        • 0x00 折腾了一天, 难受
        • 0x01 你喜欢的软件
        • 0x02 开发用-无窗口的软件
        • 0x03 图形化界面

0x00 折腾了一天, 难受
0x01 你喜欢的软件
  • QQ, 微信, 网易云音乐, 咪咕音乐, QQ音乐, 钉钉
0x02 开发用-无窗口的软件
  • 0, 安装 git

https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git

当你使用git 时, 系统会自动提示你安装

一些基本的命令配置

vim ~/.bash_profile
***********************************************
# for color
export CLICOLOR=1
  
alias l='ls -CF'
alias ll='ls -l'
alias la='ls -al'
***********************************************
source ~/.bash_profile

vim ~/.gitconfig
***********************************************
[user]
name = "自己的中文名字"
email = "公司邮箱"
[color]
ui = auto
branch = auto
diff = auto
status = auto
[color "branch"]
current = green
local = yellow
remote = red
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
unt

你可能感兴趣的:(工具的设置笔记,mac)