參考鏈接:http://www.cnblogs.com/lzrabbit/p/4032515.html
Homebrew官網(wǎng) http://brew.sh/index_zh-cn.html
(一)介紹问窃,Homebrew是神馬
Linux系統(tǒng)有個(gè)讓人蛋疼的通病孕讳,軟件包依賴懦傍,好在當(dāng)前主流的兩大發(fā)行版本都自帶了解決方案怨绣,Red hat有yum,Ubuntu有apt-get
神馬,你用mac os,不好意Mac os木有類似的東東麻顶,淚奔中幾經(jīng)折騰總算找到了第三方支持:Homebrew,Homebrew簡(jiǎn)稱brew舱卡,是Mac OSX上的軟件包管理工具辅肾,能在Mac中方便的安裝軟件或者卸載軟件,可以說(shuō)Homebrew就是mac下的apt-get轮锥、yum神器
Homebrew安裝
Homebrew的安裝非常簡(jiǎn)單矫钓,打開(kāi)終端復(fù)制、粘貼以下命令,回車新娜,搞定(請(qǐng)放心使用赵辕,原汁原味的官方安裝方法搬運(yùn))
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
ps:不知道為什么執(zhí)行這個(gè)命令有時(shí)會(huì)返回400,估計(jì)可能被墻了杯活,過(guò)幾分鐘重試下一般就ok了匆帚,有圖有真相
Homebrew使用
Homebrew使用沒(méi)啥好說(shuō)的了熬词,常用的
搜索軟件:brew search 軟件名旁钧,如brew search wget
安裝軟件:brew install 軟件名,如brew install wget
卸載軟件:brew remove 軟件名互拾,如brew remove wget
更多的歪今?自己去官網(wǎng)挖吧 http://brew.sh/index_zh-cn.html
(二)開(kāi)始安裝,先裝brew颜矿,后再安裝Git 或 yasm
mac上自帶git寄猩,老系統(tǒng)可按下面步驟進(jìn)行,整理一下整個(gè)流程為:
如果沒(méi)有g(shù)it先安裝:
mac上使用Homebrew來(lái)安裝或卸載軟件骑疆,命令:
# install homebrew, git, yasm
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install git
brew install yasm
git的基本使用方法
1.進(jìn)入一個(gè)目錄蹋笼,為了創(chuàng)建git本地倉(cāng)庫(kù)
cd /Users/yuchen/Desktop/工作
2.選擇要clone的git地址扰肌,這里使用我的測(cè)試地址
git clone https://github.com/yuchen931201/android01.git
3.為了查看當(dāng)前目錄的文件
yuchendeMacBook-Pro:工作 yuchen$ git branch -a
fatal: Not a git repository (or any of the parent directories): .git
yuchendeMacBook-Pro:工作 yuchen$ ls
4.查看master
yuchendeMacBook-Pro:工作 yuchen$ cd android01/
yuchendeMacBook-Pro:android01 yuchen$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
5.為了對(duì)比新增了哪些文件,或者哪些文件有修改
yuchendeMacBook-Pro:android01 yuchen$ git status
6.先將要更新的文件add,再commit板鬓,-m為添加更新日志,最后輸入賬號(hào)密碼
yuchendeMacBook-Pro:android01 yuchen$ git add .
yuchendeMacBook-Pro:android01 yuchen$ git commit -m"add json.rtf"
Username for 'https://github.com': yuchen931201***
Password for 'https://yuchen931201@github.com':**t2!**