Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-17 Thread Benoît Minisini
Le 09/05/2014 16:16, Patrik Karlsson a écrit :
 I think it would be nice to just tick a CheckBox in the new project dialog
 to create a standard .gitignore.

 What do you think?

 /Patrik

I want to automatically create a .gitignore file inside Gambas project 
directories, to ignore all files that must be ignored.

Question: is the .gitignore file automatically ignored? Never ignored?

-- 
Benoît Minisini

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-17 Thread Tobias Boege
On Sat, 17 May 2014, Beno?t Minisini wrote:
 Le 09/05/2014 16:16, Patrik Karlsson a ?crit :
  I think it would be nice to just tick a CheckBox in the new project dialog
  to create a standard .gitignore.
 
  What do you think?
 
  /Patrik
 
 I want to automatically create a .gitignore file inside Gambas project 
 directories, to ignore all files that must be ignored.
 
 Question: is the .gitignore file automatically ignored? Never ignored?
 

It's up to you. Per default, modifications to .gitignore are reported when
you issue git status. But you can also ignore it by listing it inside of
itself. (Note that .gitignore doesn't need to be committed before git
honours it. As soon as the file contents change, git behaves accordingly.)

I wouldn't recommend the latter because then people preparing a commit won't
see changes they made to .gitignore (which may of course happen, depending
on the project; and developers may want users to get the .gitignore because
users are potential developers) and if they try to git add .gitignore,
this will be an error. (They need to force the add: git add -f .gitignore
which is uncool).

Regards,
Tobi

-- 
There's an old saying: Don't change anything... ever! -- Mr. Monk

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-17 Thread Benoît Minisini
Le 17/05/2014 16:40, Benoît Minisini a écrit :
 Le 09/05/2014 16:16, Patrik Karlsson a écrit :
 I think it would be nice to just tick a CheckBox in the new project
 dialog
 to create a standard .gitignore.

 What do you think?

 /Patrik

 I want to automatically create a .gitignore file inside Gambas project
 directories, to ignore all files that must be ignored.

 Question: is the .gitignore file automatically ignored? Never ignored?


In revision #6272, a .gitignore file is automatically created when 
opening a project.

If the file already exists, it is not erased. The IDE just writes inside 
its own bunch of ignore patterns, using comments to delimit and 
recognize it.

Tell me if it fits your needs, and if it works (I don't use git, so I 
can't test).

-- 
Benoît Minisini

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-17 Thread Patrik Karlsson
Great, looking forward to that one too!


2014-05-17 17:21 GMT+02:00 Benoît Minisini gam...@users.sourceforge.net:

 Le 17/05/2014 16:40, Benoît Minisini a écrit :
  Le 09/05/2014 16:16, Patrik Karlsson a écrit :
  I think it would be nice to just tick a CheckBox in the new project
  dialog
  to create a standard .gitignore.
 
  What do you think?
 
  /Patrik
 
  I want to automatically create a .gitignore file inside Gambas project
  directories, to ignore all files that must be ignored.
 
  Question: is the .gitignore file automatically ignored? Never ignored?
 

 In revision #6272, a .gitignore file is automatically created when
 opening a project.

 If the file already exists, it is not erased. The IDE just writes inside
 its own bunch of ignore patterns, using comments to delimit and
 recognize it.

 Tell me if it fits your needs, and if it works (I don't use git, so I
 can't test).

 --
 Benoît Minisini


 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available
 Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-16 Thread Patrik Karlsson
2014-05-15 12:26 GMT+02:00 Benoît Minisini gam...@users.sourceforge.net:

 Le 09/05/2014 16:16, Patrik Karlsson a écrit :
  I think it would be nice to just tick a CheckBox in the new project
 dialog
  to create a standard .gitignore.

 Better: the IDE should support git as it supports subversion.

 Do you have the needed knowledge to explain me the difference between
 git and subversion, and how I can do with git what I'm already doing
 with subversion? (updates, commits, conflict management, revision
 numbers, ignoring files...)

 --
 Benoît Minisini


I guess I don't.
I'm not sure how Gambas support for subversion is, I have never used it.
In NetBeans and Eclipse I have used integrated svn and integrated git and
if Gambas could provide that it would be really cool.
For me, the main advantage that git has over svn is well, speed, and the
fact that it is distributed. I can work on my local copy and commit even
when not online, and later push/sync with another repository.

/Patrik
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-15 Thread Benoît Minisini
Le 09/05/2014 16:16, Patrik Karlsson a écrit :
 I think it would be nice to just tick a CheckBox in the new project dialog
 to create a standard .gitignore.

 What do you think?

 /Patrik

Better: the IDE should support git as it supports subversion.

Do you have the needed knowledge to explain me the difference between 
git and subversion, and how I can do with git what I'm already doing 
with subversion? (updates, commits, conflict management, revision 
numbers, ignoring files...)

-- 
Benoît Minisini

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-15 Thread Jussi Lahtinen
 Better: the IDE should support git as it supports subversion.


Prepare to have a massive head ache.


Jussi
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-15 Thread Randall Morgan
I myself was just looking into using git with Gambas. I'd be very
interested in anything you guys have to add. If anyone would like to write
an article about it for Gambas Magazine let me know


On Thu, May 15, 2014 at 1:31 PM, Jussi Lahtinen jussi.lahti...@gmail.comwrote:

  Better: the IDE should support git as it supports subversion.
 

 Prepare to have a massive head ache.


 Jussi

 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available
 Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




-- 
If you ask me if it can be done. The answer is YES, it can always be done.
The correct questions however are... What will it cost, and how long will
it take?
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-09 Thread Patrik Karlsson
I think it would be nice to just tick a CheckBox in the new project dialog
to create a standard .gitignore.

What do you think?

/Patrik
--
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user