Create new branch as a developer in github website

Here are the steps to create a new branch as a developer in GitHub:

Step 1: Log in to your GitHub account

Go to the GitHub website and log in to your account.

Step 2: Navigate to your repository

Click on the repository you want to create a new branch for. You can find your repositories listed on your GitHub dashboard.

Step 3: Click on the "Branches" tab

In the repository page, click on the "Branches" tab located at the top of the page.

Step 4: Click on the "New branch" button

Click on the "New branch" button located at the top right corner of the page.

Step 5: Enter a branch name

Enter a name for your new branch in the "Branch name" field. You can choose any name you like, but it's a good practice to follow a consistent naming convention (e.g., "feature/new-login-system" or "fix/bug-in-login-page").

Step 6: Choose a base branch

Select the base branch for your new branch. This is the branch that your new branch will be created from. Typically, you would choose the "main" or "master" branch as the base branch.

Step 7: Click on the "Create branch" button

Click on the "Create branch" button to create your new branch.

Step 8: Verify your new branch

Your new branch should now be created and listed in the "Branches" tab. You can verify that your branch has been created by checking the branch list or by clicking on the "Code" tab and selecting your new branch from the dropdown menu.

That's it! You have now created a new branch in your GitHub repository.

Remember to always create a new branch for each new feature or bug fix to keep your code organized and make it easier to manage changes.