設置短命令git
其實只要在用戶目錄下創建一個腳本「.bash_profile」,並輸入如下內容便可:bash
alias ll='ls -alF' alias la='ls -A' alias l='ls -CF'
而後code
source .bash_profile
mac下 srt不能保存密碼解決方案:it
打開SecureCRT的全局選項,在主菜單點 Preference 選擇:general --- 右側:mac options 取消勾選: user keychain
mac修改host:io
sudo nano /etc/hosts---修改host dscacheutil -flushcache ----使hosts生效
git設置不須要輸入密碼:class
設置記住密碼(默認15分鐘): git config --global credential.helper cache 若是想本身設置時間,能夠這樣作 這樣就設置一個小時以後失效: git config credential.helper 'cache --timeout=3600' 長期存儲密碼: git config --global credential.helper store