Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* How do I create a developer account
@ 2011-07-09  6:46 Abhijit Halder
  2011-07-09  6:59 ` Mike Frysinger
  0 siblings, 1 reply; 5+ messages in thread
From: Abhijit Halder @ 2011-07-09  6:46 UTC (permalink / raw)
  To: gdb-patches

I want to contribute features for gdb. Please let me know how I can
create CVS account for code checkin. I am able to checkout code from
read-only CVS. For a read/write CVS access I need an account. Please
help me regarding this.

Thanks,
Abhijit Halder


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How do I create a developer account
  2011-07-09  6:46 How do I create a developer account Abhijit Halder
@ 2011-07-09  6:59 ` Mike Frysinger
  2011-07-09  7:32   ` Abhijit Halder
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Frysinger @ 2011-07-09  6:59 UTC (permalink / raw)
  To: Abhijit Halder; +Cc: gdb-patches

On Sat, Jul 9, 2011 at 02:40, Abhijit Halder wrote:
> I want to contribute features for gdb. Please let me know how I can
> create CVS account for code checkin. I am able to checkout code from
> read-only CVS. For a read/write CVS access I need an account. Please
> help me regarding this.

you dont need an account to contribute.  anyone can post patches to
the gdb-patches mailing list and get things merged.

once you've shown significant activity, you'd sign a FSF copyright
assignment, get an account, and then get approval access.

but unless i've missed something, you havent posted any patches to gdb
yet.  the process is:
 - post patches
 - become known
 - get account
 - post more patches
 - commit things under approval
not really the other way around
-mike


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How do I create a developer account
  2011-07-09  6:59 ` Mike Frysinger
@ 2011-07-09  7:32   ` Abhijit Halder
  2011-07-09  7:50     ` Mike Frysinger
  0 siblings, 1 reply; 5+ messages in thread
From: Abhijit Halder @ 2011-07-09  7:32 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: gdb-patches

Hi Mike,

Thanks a lot for your response. I am really excited getting such a
prompt reply. I have couple of doubts.
1. To submit a patch do I need a bug-id?
2. If I am planning to introduce a new feature (enhancement) how to
get a bug-id for that.
3. To create a patch do I need to do a CVS diff (or simple diff
command is sufficient, if then what option should I use). With
anonymous CVS login I could not do a cvs update or cvs diff.

On Sat, Jul 9, 2011 at 12:15 PM, Mike Frysinger <vapier@gentoo.org> wrote:
> On Sat, Jul 9, 2011 at 02:40, Abhijit Halder wrote:
>> I want to contribute features for gdb. Please let me know how I can
>> create CVS account for code checkin. I am able to checkout code from
>> read-only CVS. For a read/write CVS access I need an account. Please
>> help me regarding this.
>
> you dont need an account to contribute.  anyone can post patches to
> the gdb-patches mailing list and get things merged.
>
> once you've shown significant activity, you'd sign a FSF copyright
> assignment, get an account, and then get approval access.
>
> but unless i've missed something, you havent posted any patches to gdb
> yet.  the process is:
>  - post patches
>  - become known
>  - get account
>  - post more patches
>  - commit things under approval
> not really the other way around
> -mike
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How do I create a developer account
  2011-07-09  7:32   ` Abhijit Halder
@ 2011-07-09  7:50     ` Mike Frysinger
  2011-07-09  8:30       ` Abhijit Halder
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Frysinger @ 2011-07-09  7:50 UTC (permalink / raw)
  To: Abhijit Halder; +Cc: gdb-patches

On Sat, Jul 9, 2011 at 02:59, Abhijit Halder wrote:
> 1. To submit a patch do I need a bug-id?

no

> 2. If I am planning to introduce a new feature (enhancement) how to
> get a bug-id for that.

you dont need one

> 3. To create a patch do I need to do a CVS diff (or simple diff
> command is sufficient, if then what option should I use). With
> anonymous CVS login I could not do a cvs update or cvs diff.

anonymous cvs accounts can do update/diff just fine.  all patches
should be in the unified diff format and be made from the top of the
tree.

there is also a read-only git mirror if you want to use that for
development instead.
-mike


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How do I create a developer account
  2011-07-09  7:50     ` Mike Frysinger
@ 2011-07-09  8:30       ` Abhijit Halder
  0 siblings, 0 replies; 5+ messages in thread
From: Abhijit Halder @ 2011-07-09  8:30 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: gdb-patches

Thanks a lot.

On Sat, Jul 9, 2011 at 1:01 PM, Mike Frysinger <vapier@gentoo.org> wrote:
> On Sat, Jul 9, 2011 at 02:59, Abhijit Halder wrote:
>> 1. To submit a patch do I need a bug-id?
>
> no
>
>> 2. If I am planning to introduce a new feature (enhancement) how to
>> get a bug-id for that.
>
> you dont need one
>
>> 3. To create a patch do I need to do a CVS diff (or simple diff
>> command is sufficient, if then what option should I use). With
>> anonymous CVS login I could not do a cvs update or cvs diff.
>
> anonymous cvs accounts can do update/diff just fine.  all patches
> should be in the unified diff format and be made from the top of the
> tree.
>
> there is also a read-only git mirror if you want to use that for
> development instead.
> -mike
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-07-09  7:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-09  6:46 How do I create a developer account Abhijit Halder
2011-07-09  6:59 ` Mike Frysinger
2011-07-09  7:32   ` Abhijit Halder
2011-07-09  7:50     ` Mike Frysinger
2011-07-09  8:30       ` Abhijit Halder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox