Easy collaboration
with team
History in your project
Make some versions
Activity tracking
You can see someone's mistake
sudo apt-get install gitInstall git bashgit initgit config --global user.email 'youremail@yourdomain.com'
git config --global user.name 'your_username'git clone (your_url)git remote add (your_remote_origin) (your_url)git statusgit add filenamegit add filename1 filenam2git add .git add -Agit rm --cached filenamegit rm filenamegit commit -m "my message"git commit -Am "my commit message with add file(s)"git pull (your_remote_origin) (local_branch)git push (your_remote_origin) (local_branch)git loggit log --onelineOr do what you want (reset, revert, branch, checkout, stash, etc)