Just want to know about GIT Repository. Can any one in the group will tell me what is GIT Repo. And what it is used for
______________________________________________________________________________
Basically GIT is the version control system where two or more developer can work on the same project.
Developers can pull and push file from the server,make changes to file but only one at a time,clone the project etc..
Please refer the below link
http://git-scm.com/book/en/ Git-Basics-Getting-a-Git- Repository
____________________________________________________________________________________
In very simple terms, multiple developers normally work on the same project. And all are given to work on particular functionality of the project. So they make changes on their local system and then push those changes to centralized place (like GIT, SVN), so all developers work is migrated over there. Moreover if more than one developer is working for same functionality and they push their changes then it will be saved as different versions on centralized space. The main advantage is if some code is causing some issues then you can rollback to previous version of the code. Also If new developer joins the project, he can pull work done till date and immediately can be synchronized to project. There are many such version control systems. One such is GIT, others are SVN, Bitbucket etc. purpose is same but the way in which they work may differ and so the commands.
______________________________________________________________________________
Basically GIT is the version control system where two or more developer can work on the same project.
Developers can pull and push file from the server,make changes to file but only one at a time,clone the project etc..
Please refer the below link
http://git-scm.com/book/en/
____________________________________________________________________________________
In very simple terms, multiple developers normally work on the same project. And all are given to work on particular functionality of the project. So they make changes on their local system and then push those changes to centralized place (like GIT, SVN), so all developers work is migrated over there. Moreover if more than one developer is working for same functionality and they push their changes then it will be saved as different versions on centralized space. The main advantage is if some code is causing some issues then you can rollback to previous version of the code. Also If new developer joins the project, he can pull work done till date and immediately can be synchronized to project. There are many such version control systems. One such is GIT, others are SVN, Bitbucket etc. purpose is same but the way in which they work may differ and so the commands.
No comments:
Post a Comment