Git के साथ काम करने में commands का एक मूल सेट शामिल होता है जो changes को track करने, commit करने, history देखने और remotes के साथ synchronize करने के लिए होता है। इन्हें जानना fundamental, रोज़मर्रा की practical knowledge है।
Setup और शुरुआत
git init # create a new repository in the current directory
git clone <url> # copy a remote repository locally
git config --global user.name
git config --global user.email
