Git بہت configurable ہے git config کے ذریعے — اپنی شناخت، editor، default behaviors، اور aliases (commands کے لیے shortcuts) سیٹ کریں۔ Git کو اچھی طرح configure کرنا اور aliases استعمال کرنا آپ کے workflow اور productivity کو بہتر بناتا ہے۔
ضروری configuration
git config --global user.name
git config --global user.email
git config --global core.editor
git config --global init.defaultBranch main
git config --global pull.rebase
git config --global core.autocrlf input
