Articles Tagged with Git
-
Felix Geisendörfer - Git and CakePHP
Written on 2008-12-02 14:16:00 in CakeFest, CakePHP,
Viewed 10740 times 3 CommentsFelix is a huge git fan and Git is a source version control application. It is a command line tool, and there are not many gui tools. Git has a few advantages, it is easier to integrate with other tools. Git also doesn't require a server, allowing you to work locally. Unlike svn there is only one .git folder and it contains the entire project history. Configuring git Before using git you should configure git with git config. You should configure your user name, user email and ui.color. Once you have configured git you are ready to go. Making Commits By using git add you can add single files, folders, whole trees. You then can use git commit to create a commit and add a commit message. You cannot store empty folders in git. If you have any empty folders you need to put an 'empty' file in the folders. find . -typ...