Skip to main content

Posts

Showing posts from January, 2019

learn Github in 3 Steps

Github - Repository, which save the files into the cloud Git - Using users can actually retreive or save the data into the cloud Download : git-scm.com check on command or terminal: git --version Configure: git config --global user.name "ur name" git config --global user.email "ur email" Create folder: mkdir folder_name  and go inside it - where u create the project or files Add any file  do the follwoing setps git init .                   // this is initialze the git git status                 // to check status git add index.html  //e.g index.html u created and want to upload into the git hub git commit -m "uploaded first file" git log   // to check ur log   - type q to quit from log // do same changes to the file and upload git status git diff index.ht...