-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing default branch from Master to Main while still keeping the master #119
Comments
@Nebrethar @kaxada I think this is a super important change to make. Can I make it? Will it mess up the Badging Bot if I do? |
Yes, I think its implementable with probably not breaking anything(because the implementation is not much dependent on branch) but making things sure enough we have decided to make the bot use .md files which is in the .github directory from the badging-bot repository ,i.e, migrating the .github folder to the badging bot project directory and accessing the welcome messages and checklist messages from there. You can find the links here: Project idea: https://github.com/orgs/badging/projects/1#card-79627246 Its implemented with this pull-request and with support of @Nebrethar I think we will be deploying it soon, in the next versions of it. |
This will have to happen upon the next release of the badging-bot 😁 see you soon! |
@kaxada do you think this is something we could prioritize with upcoming releases? I'd really love to see this happen but I'm not sure what it will take to get it there 🤔 Do you have thoughts on this? |
Just wanted to bump this up because i think it's super important to do. I am not sure what it will require though! cc @kaxada |
Ohh. As far as I know. the related configurations between this and other repositories are not affected by the naming of the branch. So we can make the change now. let me do it. |
to change the name of your local branch copy and paste this: git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a |
We can make a new branch as
Main
and make it the default branch and still keep theMaster
branch for some time so that it doesn't break anything. Then maybe delete theMaster
after some time.This is how @sgoggins made the change to
Main
for Augur!The text was updated successfully, but these errors were encountered: