Blog by Frank

Git

Git-LFS

# https://formulae.brew.sh/formula/git-lfs
brew install git-lfs
git lfs track 10mb.psd
git add .gitattributes
git commit -m 'Add PSD file'
git push origin master
git lfs pull

SourceTree Customized Full Name and Email SourceTree 客制化名字和邮箱

git, sourcetree中针对不同仓库设置不同账户

git config --global user.name "your name"
git config --global user.email "your email-address"
git config --local user.name "your name"
git config --local user.email "your email-address"