Git తో పనిచేయడం కూడా commands యొక్క కోర్ సెట్ను కలిగి ఉంటుంది, ఇవి changes ను ట్రాక్ చేయడానికి, committing, history చూడటానికి, మరియు remotes తో synchronize చేయడానికి ఉపయోగించబడతాయి. వీటిని తెలుసుకోవడం ప్రాథమిక, రోజువారీ ఆచరణ జ్ఞానం.
Setup మరియు starting
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
