Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-05 Thread Gilles
On Tue, 4 Oct 2011 15:14:56 +0200, Dmitry Chestnykh dmi...@codingrobots.com wrote: I don't know a lot about Visual Studio, but*.sln looks to me like a solution file, don't ignore it. According to the git ignore template here https://github.com/github/gitignore/blob/master/VB.Net.gitignore,

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Gilles
On Mon, 03 Oct 2011 15:59:13 +0200, Gilles gilles.gana...@free.fr wrote: I'd like to start using Fossil to monitor Vb.Net (2008 Express) projects, and need to know which files/folders I can safely ignore when using the add command. What is the right way to tell Fossil to ignore folders, or

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Lluís Batlle i Rossell
On Tue, Oct 04, 2011 at 10:54:13AM +0200, Gilles wrote: On Mon, 03 Oct 2011 15:59:13 +0200, Gilles gilles.gana...@free.fr wrote: I'd like to start using Fossil to monitor Vb.Net (2008 Express) projects, and need to know which files/folders I can safely ignore when using the add command.

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Gilles
On Tue, 4 Oct 2011 11:13:16 +0200, Lluís Batlle i Rossell virik...@gmail.com wrote: There may be some troubles with spaces or the quotes, I don't know. I wondered too, but it also adds files in bin/ and obj/. Do you run that from a 'cmd' prompt, or a 'sh' prompt? From a cmd prompt in Windows.

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Ramon Ribó
BTW, to cancel changes made but not commited, is there a less radical solution than force-closing/reopening the repository? fossil help revert RR 2011/10/4 Gilles gilles.gana...@free.fr: On Tue, 4 Oct 2011 11:13:16 +0200, Lluís Batlle i Rossell virik...@gmail.com wrote: There may be some

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Gilles
On Tue, 4 Oct 2011 11:26:17 +0200, Ramon Ribó ram...@compassis.com wrote: fossil help revert Thanks, much better. So, nobody knows why fossil includes files in a folder even though I use the --ignore option? === C:\Projects\MyApp\WindowsApplication1fossil add --ignore bin/*,obj/* .

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Dmitry Chestnykh
On Oct 4, 2011, at 13:03 , Gilles wrote: So, nobody knows why fossil includes files in a folder even though I use the --ignore option? Does it ignore files if you set ignore-glob by launching 'fossil ui' and then going to Admin Settings? -- Dmitry Chestnykh

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Gilles
On Tue, 4 Oct 2011 13:40:30 +0200, Dmitry Chestnykh dmi...@codingrobots.com wrote: Does it ignore files if you set ignore-glob by launching 'fossil ui' and then going to Admin Settings? Yes. 1. I added the following in ignore-glob: ignore-glob=*.o,*.obj,*.exe,bin/*,obj/*,My Project/* 2. Hit

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Dmitry Chestnykh
On Oct 4, 2011, at 13:53 , Gilles wrote: ignore-glob=*.o,*.obj,*.exe,bin/*,obj/*,My Project/* What about */bin/*,*/obj/* ? -- Dmitry Chestnykh ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Gilles
On Tue, 4 Oct 2011 14:08:49 +0200, Dmitry Chestnykh dmi...@codingrobots.com wrote: What about */bin/*,*/obj/* ? That did it :-) Using the following in either the --ignore switch or the UI's Admin Settings ignore-blog tells Fossil to ignore the following files + directories:

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-04 Thread Dmitry Chestnykh
On Oct 4, 2011, at 14:20 , Gilles wrote: On Tue, 4 Oct 2011 14:08:49 +0200, Dmitry Chestnykh dmi...@codingrobots.com wrote: What about */bin/*,*/obj/* ? That did it :-) Great! From your logs I noticed that bin was a subdirectory of another directory inside the project root, so just bin/*

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Tomek Kott
for C++ projects based in VS2008/10, I have the following ignore glob, which seems to work pretty well: *.vcxproj.user,*Debug/*,*.suo Probably you can replace vcx with vb. Of course, YMMV. I ignore the debug folders since these are used when building, and I assume I can just build things again

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread tpero...@compumation.com
-boun...@lists.fossil-scm.org [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf Of Tomek Kott Sent: Monday, October 03, 2011 9:56 AM To: fossil-users@lists.fossil-scm.org Subject: Re: [fossil-users] [vb.net] Which files/folders can be safely ignored? for C++ projects based in VS2008/10, I

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Tomek Kott
Perovic Compumation, Inc. ** ** *From:* fossil-users-boun...@lists.fossil-scm.org [mailto: fossil-users-boun...@lists.fossil-scm.org] *On Behalf Of *Tomek Kott *Sent:* Monday, October 03, 2011 9:56 AM *To:* fossil-users@lists.fossil-scm.org *Subject:* Re: [fossil-users] [vb.net] Which

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Scott Robison
...@lists.fossil-scm.org [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf Of Tomek Kott Sent: Monday, October 03, 2011 9:56 AM To: fossil-users@lists.fossil-scm.org Subject: Re: [fossil-users] [vb.net] Which files/folders can be safely ignored? for C++ projects based in VS2008/10

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Ross Berteig
At 06:59 AM 10/3/2011, Gilles wrote: I'd like to start using Fossil to monitor Vb.Net (2008 Express) projects, and need to know which files/folders I can safely ignore when using the add command. A pet peeve of mine with IDE developers is they way they tend to completely fail to

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Gilles
On Tue, 04 Oct 2011 01:55:46 +0200, Gilles gilles.gana...@free.fr wrote: Thanks guys for the help. Apparently, I'm not doing it right, as Fossil did add bin/, obj/, and My Project/ when running add. Incidently, what is the right way to cancel changes made but not yet commited? According to the

Re: [fossil-users] [vb.net] Which files/folders can be safely ignored?

2011-10-03 Thread Dmitry Chestnykh
On Oct 4, 2011, at 2:08 , Ross Berteig wrote: I wonder if we should start a collection of pages at the fossil-scm.org wiki that document the collective wisdom of this group for IDEs we've encountered. Here's a useful resource: https://github.com/github/gitignore -- Dmitry Chestnykh