LEARN ABOUT THE GIT AND GIT HUB WITH A NEWBEE
#02 This is krish a 'newbee' still learning about Git and Github . In this blog I'll try my best to explain whatever i know about git and github in the way I learned . What is git and github ? Git : Git is a tool that helps us to track down the changes we made in our codes by saving each changes in different versions . (For our understanding lets say the unchanged code as version 1 and the 1st changed or edited code as version 2 .) It will be saved locally i.e.,within the computer Git doesn’t save your work automatically — you have to tell it when to save a version. Here’s how it works: You make changes to your files (like editing code or adding new files). 2.You tell Git to save those changes by giving the command in the git bash . The command: git commit -m "your message here" Git will then save a version of your project. You get to decide when to save (or commit ) your work! Github : Github is a web source where we sto...