Posts

Showing posts from April, 2017

Course - Learn Git in Code Academy

git init - initialize and this command sets up all the tools Git needs to begin tracking changes made to the project. in a git project, there are three parts and they are A Working Directory : where we'll be doing all the work: creating, editing, deleting and organizing files A Staging Area : where we'll list changes we make to the working directory A Repository : where Git permanently stores those changes as different versions of the project we can check the status of those changes with: git status - it shows the untracked files in red color and then we should do git add 'file name' to add the file and then  we should do 'git commit' to reposit the file git show HEAD git log to see the history

A place to learn

As a beginner,  found out a website to learn the syntax and the basics of some programming languages in code academy . Try and see how it is gonna be help you with.