8TH DAY AT UKI
GIT
1.git is a version control system.
GITHUB
👧 GITHUB is a web based GIT or version control repository and Internet costing service.
GITHUB PAGES
👧Seven steps of push a new project.
1.git init
2.git remote add origin "URL"
3.git remote -v
4.git status
5.git add "file name"
6.git commit -m "message"
7.git push -u origin master
👧If we push a old project we need only four steps.
1.git status
2.git add "file name"
3.git commit -m "message"
4.git push -u origin master
👧add the all files
git add *
👧remove
git remote rm origin