* [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others
@ 2024-06-03 19:55 rs
2024-06-04 19:12 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: rs @ 2024-06-03 19:55 UTC (permalink / raw)
To: reatmon, denis; +Cc: meta-ti
From: Randolph Sapp <rs@ti.com>
Lift the common parts of the top level gitignore from oe-core and
meta-openembedded. This masks out temporary python files, intermediate
artifacts, and patches at the root of the project.
Signed-off-by: Randolph Sapp <rs@ti.com>
---
.gitignore | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..c01df45e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+*.pyc
+*.pyo
+/*.patch
+*.swp
+*.orig
+*.rej
+*~
--
2.45.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others
2024-06-03 19:55 [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others rs
@ 2024-06-04 19:12 ` Denys Dmytriyenko
2024-06-04 22:15 ` Ryan Eatmon
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2024-06-04 19:12 UTC (permalink / raw)
To: rs; +Cc: reatmon, meta-ti
On Mon, Jun 03, 2024 at 02:55:15PM -0500, rs@ti.com wrote:
> From: Randolph Sapp <rs@ti.com>
>
> Lift the common parts of the top level gitignore from oe-core and
> meta-openembedded. This masks out temporary python files, intermediate
> artifacts, and patches at the root of the project.
FWIW, this is a matter of a personal preference, e.g. I don't like when
git ignores, essentially hiding patches in the top directory. I do prefer
them to be visible with "git status". But I'll leave it to Ryan.
> Signed-off-by: Randolph Sapp <rs@ti.com>
> ---
> .gitignore | 7 +++++++
> 1 file changed, 7 insertions(+)
> create mode 100644 .gitignore
>
> diff --git a/.gitignore b/.gitignore
> new file mode 100644
> index 00000000..c01df45e
> --- /dev/null
> +++ b/.gitignore
> @@ -0,0 +1,7 @@
> +*.pyc
> +*.pyo
> +/*.patch
> +*.swp
> +*.orig
> +*.rej
> +*~
> --
> 2.45.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others
2024-06-04 19:12 ` Denys Dmytriyenko
@ 2024-06-04 22:15 ` Ryan Eatmon
2024-06-05 16:07 ` Randolph Sapp
0 siblings, 1 reply; 5+ messages in thread
From: Ryan Eatmon @ 2024-06-04 22:15 UTC (permalink / raw)
To: Denys Dmytriyenko, rs; +Cc: meta-ti
On 6/4/2024 2:12 PM, Denys Dmytriyenko wrote:
> On Mon, Jun 03, 2024 at 02:55:15PM -0500, rs@ti.com wrote:
>> From: Randolph Sapp <rs@ti.com>
>>
>> Lift the common parts of the top level gitignore from oe-core and
>> meta-openembedded. This masks out temporary python files, intermediate
>> artifacts, and patches at the root of the project.
>
> FWIW, this is a matter of a personal preference, e.g. I don't like when
> git ignores, essentially hiding patches in the top directory. I do prefer
> them to be visible with "git status". But I'll leave it to Ryan.
Yeah. I was testing it, but I was also thinking the same thing and
trying to decide if I wanted to take them. Maybe a reduced set might
good. Like leave the patches, but hide the temp files and what not?
What are your thoughts on that? Just remove the *.patch from the list
below?
>> Signed-off-by: Randolph Sapp <rs@ti.com>
>> ---
>> .gitignore | 7 +++++++
>> 1 file changed, 7 insertions(+)
>> create mode 100644 .gitignore
>>
>> diff --git a/.gitignore b/.gitignore
>> new file mode 100644
>> index 00000000..c01df45e
>> --- /dev/null
>> +++ b/.gitignore
>> @@ -0,0 +1,7 @@
>> +*.pyc
>> +*.pyo
>> +/*.patch
>> +*.swp
>> +*.orig
>> +*.rej
>> +*~
>> --
>> 2.45.1
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others
2024-06-04 22:15 ` Ryan Eatmon
@ 2024-06-05 16:07 ` Randolph Sapp
2024-06-05 16:49 ` Ryan Eatmon
0 siblings, 1 reply; 5+ messages in thread
From: Randolph Sapp @ 2024-06-05 16:07 UTC (permalink / raw)
To: Ryan Eatmon, Denys Dmytriyenko; +Cc: meta-ti
On Tue Jun 4, 2024 at 5:15 PM CDT, Ryan Eatmon wrote:
>
>
> On 6/4/2024 2:12 PM, Denys Dmytriyenko wrote:
> > On Mon, Jun 03, 2024 at 02:55:15PM -0500, rs@ti.com wrote:
> >> From: Randolph Sapp <rs@ti.com>
> >>
> >> Lift the common parts of the top level gitignore from oe-core and
> >> meta-openembedded. This masks out temporary python files, intermediate
> >> artifacts, and patches at the root of the project.
> >
> > FWIW, this is a matter of a personal preference, e.g. I don't like when
> > git ignores, essentially hiding patches in the top directory. I do prefer
> > them to be visible with "git status". But I'll leave it to Ryan.
>
> Yeah. I was testing it, but I was also thinking the same thing and
> trying to decide if I wanted to take them. Maybe a reduced set might
> good. Like leave the patches, but hide the temp files and what not?
> What are your thoughts on that? Just remove the *.patch from the list
> below?
Up to you guys. I just noticed the different behavior in this layer and wanted
to get us more in sync with core.
> >> Signed-off-by: Randolph Sapp <rs@ti.com>
> >> ---
> >> .gitignore | 7 +++++++
> >> 1 file changed, 7 insertions(+)
> >> create mode 100644 .gitignore
> >>
> >> diff --git a/.gitignore b/.gitignore
> >> new file mode 100644
> >> index 00000000..c01df45e
> >> --- /dev/null
> >> +++ b/.gitignore
> >> @@ -0,0 +1,7 @@
> >> +*.pyc
> >> +*.pyo
> >> +/*.patch
> >> +*.swp
> >> +*.orig
> >> +*.rej
> >> +*~
> >> --
> >> 2.45.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others
2024-06-05 16:07 ` Randolph Sapp
@ 2024-06-05 16:49 ` Ryan Eatmon
0 siblings, 0 replies; 5+ messages in thread
From: Ryan Eatmon @ 2024-06-05 16:49 UTC (permalink / raw)
To: Randolph Sapp, Denys Dmytriyenko; +Cc: meta-ti
On 6/5/2024 11:07 AM, Randolph Sapp wrote:
> On Tue Jun 4, 2024 at 5:15 PM CDT, Ryan Eatmon wrote:
>>
>>
>> On 6/4/2024 2:12 PM, Denys Dmytriyenko wrote:
>>> On Mon, Jun 03, 2024 at 02:55:15PM -0500, rs@ti.com wrote:
>>>> From: Randolph Sapp <rs@ti.com>
>>>>
>>>> Lift the common parts of the top level gitignore from oe-core and
>>>> meta-openembedded. This masks out temporary python files, intermediate
>>>> artifacts, and patches at the root of the project.
>>>
>>> FWIW, this is a matter of a personal preference, e.g. I don't like when
>>> git ignores, essentially hiding patches in the top directory. I do prefer
>>> them to be visible with "git status". But I'll leave it to Ryan.
>>
>> Yeah. I was testing it, but I was also thinking the same thing and
>> trying to decide if I wanted to take them. Maybe a reduced set might
>> good. Like leave the patches, but hide the temp files and what not?
>> What are your thoughts on that? Just remove the *.patch from the list
>> below?
>
> Up to you guys. I just noticed the different behavior in this layer and wanted
> to get us more in sync with core.
I say remove the patches and submit a v2.
>>>> Signed-off-by: Randolph Sapp <rs@ti.com>
>>>> ---
>>>> .gitignore | 7 +++++++
>>>> 1 file changed, 7 insertions(+)
>>>> create mode 100644 .gitignore
>>>>
>>>> diff --git a/.gitignore b/.gitignore
>>>> new file mode 100644
>>>> index 00000000..c01df45e
>>>> --- /dev/null
>>>> +++ b/.gitignore
>>>> @@ -0,0 +1,7 @@
>>>> +*.pyc
>>>> +*.pyo
>>>> +/*.patch
>>>> +*.swp
>>>> +*.orig
>>>> +*.rej
>>>> +*~
>>>> --
>>>> 2.45.1
>
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-05 16:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 19:55 [meta-ti][master/scarthgap][PATCH] gitignore: lift some sane defaults from others rs
2024-06-04 19:12 ` Denys Dmytriyenko
2024-06-04 22:15 ` Ryan Eatmon
2024-06-05 16:07 ` Randolph Sapp
2024-06-05 16:49 ` Ryan Eatmon
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.