Reading-Notes

GitSummary

GIT

What is Git??

Git is a free source control system designed to handle everything from small to very large projects with speed and efficiency Git is easy to learn and has a tiny footprint with lightning fast performance

Git Benefites:

  1. reduces risks of data loss.
  2. allows to track file revesions, to show a change history.

Projects are stored in repositories, and the remote repository is the origin, in this case the repository stored on GitHub

Basic Git commands in the command line:

git clone https://github.com// (clones the repository)

git add or git add ( to add the files)

git add . ( to add all files)

git commit -m “” (to commit messages)

git status and git log (to check your files and commit history)

git –help and git –help (for more information)

GitImg

Sukina AbuHammad Thank You