Git کے ساتھ کام کرنے میں تبدیلیوں کو ٹریک کرنے، commit کرنے، history دیکھنے، اور remotes کے ساتھ synchronize کرنے کے لیے commands کا ایک بنیادی سیٹ شامل ہے۔ ان کو جاننا بنیادی، روزمرہ کی عملی معلومات ہے۔
Setup اور شروع کرنا
git init # create a new repository in the current directory
git clone <url> # copy a remote repository locally
git config --global user.name "Name"
git config --global user.email
