Git સાથે કામ કરવામાં આદેશોનો મૂળ સમૂહ સામેલ છે જે ફેરફારોને ટ્રૅક કરવા, commit કરવા, ઈતિહાસ જોવા અને રિમોટ્સ સાથે સિંક્રોનાઈজ કરવા માટે છે. તેને જાણવું મૂળભૂત, રોજિંદા વ્યવહારિક જ્ઞાન છે.
સેટআપ અને શરૂઆત
git init # create a new repository in the current directory
git clone <url> # copy a remote repository locally
git config --global user.name "Name" # set your identity (once)
git config --global user.email
