Git and GitHub
Today’s topic is about Git and GitHub
we will cover these Topics :
- Git History
- How to Install It
- Some Commands line to Know
- Github
Let’s Start
Git History
Git traces its roots to the open source software project Linux kernel. Developers of this project began using a DVCS called BitKeeper in 2002. In 2005, many of these developers stopped using this DVCS due to tension between the Linux kernel community and the company behind BitKeeper’s and the eventual revocation of the DVCS’ gratis status. Source
What is Git
- it's version control system
- let's developers to work togather in the same project
- History log of files
- projects in one repository

How to Install It
- Mac OS X Go To Website
- Windows Go To Website
- Linux Go To Website
Some Commands line to Know
git config --list To Check The Settings
Exmaple :
$ git config --list
user.name=Jane Smith
user.email=example@email.com
color.status=auto
color.branch=auto
color.interactive=auto
git help command Getting Help
Setting up a Git Repository
Importing
$ cd test (cd = change directory)$ git init$ git add *.c$ git commit -m “any message here”
Cloning
$ git clone https://github.com/test
Check File Status
$ git status
Add Files
$ git add *
Contact Info :
Please Feel Free To Contact Me When You Need help ^_^
- www.facebook.com/aghyadalbalkhi
- Email : aghyadalbalkhi@gmail.com