Git உடன் பணிபுரிவது மாற்றங்களைக் கண்காணிப்பது, commit செய்வது, வரலாற்றைப் பார்ப்பது மற்றும் remotes உடன் ஒத்திசைப்பது ஆகிய 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
git config --global user.email
