[git-users] Re: How can I make a clone of the git repository subfolders?

2013-03-25 Thread Jeroen De Vlieger
$ cd /home/site.name/ $ git clone giturl www see $ git help clone On Saturday, March 23, 2013 12:52:45 PM UTC+1, Denis Porplenko wrote: I am doing a project in the local environment Denwer My local sites in the folder / home / site.name / www / Inside the folder www must be project file.

[git-users] listing of ignored files is incomplete?

2013-03-25 Thread Jeroen De Vlieger
lets create a new git repo $ mkdir testRepo $ cd testRepo $ mkdir dirWithOnlyIgnoredFiles $ touch dirWithOnlyIgnoredFiles/foo.log $ touch test.txt $ touch main.log $ git init now lets ignore the log files $ echo '*.log' .gitignore stage all non-ignored files and creat a commit $ git add .

Re: [git-users] Re: listing of ignored files is incomplete?

2013-03-25 Thread Jeroen De Vlieger
De Vlieger wrote: lets create a new git repo $ mkdir testRepo $ cd testRepo $ mkdir dirWithOnlyIgnoredFiles $ touch dirWithOnlyIgnoredFiles/foo.**log $ touch test.txt $ touch main.log $ git init now lets ignore the log files $ echo '*.log' .gitignore stage all non-ignored files