dev-vickie / Firebase-Auth

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contribution guide

If you don't have git on your machine, install it.

1.Fork this repository

Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

2.Clone the repository

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

Open a terminal and run the following git command:

git clone "url you just copied"

where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.

For example:

git clone https://github.com/dev-vickie/Firebase-Auth.git

3.Create a branch

Change to the repository directory on your computer (if you are not already there):

cd project-name

Now create a branch using the git switch command.You can name your branch anything you want,even your name,but keep it short:

git switch -c your-new-branch-name

For example:

git switch -c add-ui-changes

4.Make necessary changes you want to code and commit those changes

Here is where you will add code your next ui screen until you are satisfied with the changes

If you go to the project directory and execute the command git status, you'll see there are changes.

Add those changes to the branch you just created using the git add command:

git add .

Now commit those changes using the git commit command:

git commit -m "Added The Details Page"

5.Push changes to GitHub

Push your changes using the command git push:

git push origin -u your-branch-name

replacing your-branch-name with the name of the branch you created earlier.

6.Submit your changes for review

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

Now submit the pull request - with a description of the changes you have made

Soon your changes will be reviewed and merged into the main branch of this project. You will get a notification email once the changes have been merged.

Don't forget to star the repo šŸ¤©

About


Languages

Language:C++ 37.8%Language:CMake 31.0%Language:Dart 22.2%Language:Swift 3.5%Language:HTML 2.9%Language:C 2.3%Language:Kotlin 0.2%Language:Objective-C 0.1%