revision controlling or version controlling is a very important thing in modern software development. To know more about it's importance read the fallowing article at oss watch.
Initializing and using Git is easier than expected. At first Git must be installed to computer. Second, User identity should be set as fallows
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
Third, create a file called ".
gitignore" at the root of the project. Open the file and add folder paths that should not be included into the Git repository. Paths should be as started from project root directory.Forth, initialize it repository by executing
$ git init
Fifth, Add all necessary files to the git repository
$ git add .
Finlay , Commit
$ git commit -m "<your message>"
Thats it, If all are done properly
resourcess
http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository
http://git-scm.com/book/en/Getting-Started-First-Time-Git-Setup
http://symfony.com/doc/current/cookbook/workflow/new_project_git.html
No comments:
Post a Comment