Cấu hình chung cho GIT trước khi bắt đầu dự án
git config --global user.name "your_nickname" # Tên đặt theo tên viết tắt (like mail.io)
git config --global user.email <email company.com>
git config --global core.safecrlf true
git config --global color.ui true
git config --global core.fileMode false
git config --global core.autocrlf false
git config --global credential.helper store
Last updated