Re: Renaming master branch to main is now done.

2021-06-01 Thread Aizhamal Nurmamat kyzy
Thank you Ash and Jarek for this work! This is an important change to promote inclusive language for all open source participants. On Tue, Jun 1, 2021 at 5:44 AM Tomasz Urbaszek wrote: > Nice job! Thanks Ash and Jarek for leading this effort. > > Tomek > > On Tue, 1 Jun 2021 at 14:38, Alexander

Re: Renaming master branch to main is now done.

2021-06-01 Thread Tomasz Urbaszek
Nice job! Thanks Ash and Jarek for leading this effort. Tomek On Tue, 1 Jun 2021 at 14:38, Alexander Shorin wrote: > > It's such a pity. > > -- > ,,,^..^,,, > > > On Tue, Jun 1, 2021 at 1:06 PM Ash Berlin-Taylor wrote: >> >> Hi everyone, >> >> This rename has now happened, and the default brach

Re: Renaming master branch to main is now done.

2021-06-01 Thread Alexander Shorin
It's such a pity. -- ,,,^..^,,, On Tue, Jun 1, 2021 at 1:06 PM Ash Berlin-Taylor wrote: > Hi everyone, > > This rename has now happened, and the default brach for apache/airflow is > now "main". > > If you have a local checkout you can update the local default branch by > running the following

Re: Renaming master branch to main is now done.

2021-06-01 Thread Jarek Potiuk
Just one thing. For your own forks you will get information that the default branch of the parent repository has changed and you have to manually rename master -> main yourself. Also, as of recently (May 6) you can easily sync branches in your fork with the upstream: https://github.blog/changelog

Re: Renaming master branch to main is now done.

2021-06-01 Thread Ryan Hamilton
Nice workโ€”thank you! On Tue, Jun 1, 2021 at 6:36 AM Sumit Maheshwari wrote: > ๐Ÿ‘๐Ÿ‘ > > On Tue, Jun 1, 2021 at 3:57 PM Dennis Akpenyi > wrote: > >> Great Job! >> >> On Tue, Jun 1, 2021 at 12:19 PM Jarek Potiuk wrote: >> >>> Wohoo! >>> >>> On Tue, Jun 1, 2021 at 12:06 PM Ash Berlin-Taylor >>> wro

Re: Renaming master branch to main is now done.

2021-06-01 Thread Sumit Maheshwari
๐Ÿ‘๐Ÿ‘ On Tue, Jun 1, 2021 at 3:57 PM Dennis Akpenyi wrote: > Great Job! > > On Tue, Jun 1, 2021 at 12:19 PM Jarek Potiuk wrote: > >> Wohoo! >> >> On Tue, Jun 1, 2021 at 12:06 PM Ash Berlin-Taylor wrote: >> >>> Hi everyone, >>> >>> This rename has now happened, and the default brach for apache/air

Re: Renaming master branch to main is now done.

2021-06-01 Thread Dennis Akpenyi
Great Job! On Tue, Jun 1, 2021 at 12:19 PM Jarek Potiuk wrote: > Wohoo! > > On Tue, Jun 1, 2021 at 12:06 PM Ash Berlin-Taylor wrote: > >> Hi everyone, >> >> This rename has now happened, and the default brach for apache/airflow is >> now "main". >> >> If you have a local checkout you can update

Re: Renaming master branch to main is now done.

2021-06-01 Thread Jarek Potiuk
Wohoo! On Tue, Jun 1, 2021 at 12:06 PM Ash Berlin-Taylor wrote: > Hi everyone, > > This rename has now happened, and the default brach for apache/airflow is > now "main". > > If you have a local checkout you can update the local default branch by > running the following commands > > > git branch

Renaming master branch to main is now done.

2021-06-01 Thread Ash Berlin-Taylor
Hi everyone, This rename has now happened, and the default brach for apache/airflow is now "main". If you have a local checkout you can update the local default branch by running the following commands git branch -m master main git fetch origin git branch -u origin/main main git remote set