Git के साथ काम करने में बदलावों को ट्रैक करने, commit करने, इतिहास देखने और remotes के साथ synchronize करने के लिए commands का एक मुख्य समूह शामिल होता है। इन्हें जानना मौलिक, रोज़मर्रा का व्यावहारिक ज्ञान है।
सेटअप और शुरुआत
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
