so if you are come across this article then definitely you are new to the programming world . Right So the first question which is revolving in your head is that what is git? . in simple words. git is version control computer Application Now the second question which is revolving in your mind is what is version control. so before we gonna answer this question .lets first talked about why there is a need for git.
New programmer |
we all know that whenever we create any project whether it's an application or a website .so at the time of development of that project we all know that how much code we edit , rewrite and replace it. we manually track our project . we keep on remembering which line of code we have written today. and where we wrote it. in our code file until it become successfully Build .So its very diffcult for our mind to keep on tracking such huge code file and the condition becomes more worse when its comes to the developing projects with team of developers . because in that it's become totally impossible keep on tracking each and every team member .and there comes lots of code conflicts or Errors Happens.
so here comes out our version control.so what actually version control do is keep on tracking our project from the scratch. so if something we have written down wrong code today. we can easily rollback to its previous state or previous version with the help of version control and we don't have to remember which line of code we have to edit to rollback it to its previous state. and its become very easy to track all the team members with the help of version control or in other words the term version control refers the system which records changes that we kept on doing in our project.
so right now in market there are lots of version control such as git , gitlab , Bitbucket But among this git is very popular version control system . git is developed by linus Torvals in 2005. so the now actual question what is git ? .
1 . what is git ?
Example on git
Github logo image |
0 Comments