GithubHelp home page GithubHelp logo

bella0x0 / flutter_portfolio_hacktoberfest Goto Github PK

View Code? Open in Web Editor NEW

This project forked from 0x01-itsmurphy/flutter_portfolio_hacktoberfest

0.0 0.0 0.0 0 B

This project is created for Hactoberfest 2022

Objective-C 0.27% Kotlin 1.06% Dart 82.48% Swift 2.88% HTML 13.31%

flutter_portfolio_hacktoberfest's Introduction

Hacktoberfest 2022

Hacktoberfest is a month-long global celebration of open source software run by DigitalOcean in partnership with Docker and AppWrite, with a strong focus on encouraging contributions to open source projects.
  • Hacktoberfest is open to everyone.
  • Four quality pull requests must be submitted to public GitHub and/or GitLab repositories.
  • You can sign up anytime between October 1 and October 31.

How to contribute to this project:

1. Star and Fork this Repository

Star and fork this repository on GitHub by navigating at the top of this repository.

GitHub repository URLs will reference both the username associated with the owner of the repository, as well as the repository name. For example, {acmbvp} is the owner of the Hacktoberfest repository, so the GitHub URL for this project is: https://github.com/acmbvp/Hacktoberfest/

screenshot-star

screenshot-fork

When you’re on the main page of a repository, you’ll see a button to "Star" and “Fork” the repository on the upper right-hand side of the page, underneath your user icon.

2. Clone the Repository

To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

This URL will be similar to the URL above, except now it will end with .git. In the cloud_haiku example above, the URL will look like this: https://github.com/your-username/Hacktoberfest.git

You can alternatively copy the URL by using the green “Clone or download” button from your repository page that you just forked from the original repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL:

screenshot 73

Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:

git clone https://github.com/your-username/Hacktoberfest.git

screenshot 153

3. Create a New Branch

To create your branch, from your terminal window, change your directory so that you are working in the directory of the repository. Be sure to use the actual name of the repository (i.e. Hacktoberfest) to switch into that directory.

cd Hacktoberfest

Now, we’ll create our new branch with the git branch command. Make sure you name it descriptively so that others working on the project understand what you are working on.

screenshot 154

git branch new-branch

Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command:

git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Output:
Switched to branch 'new-branch'

At this point, you can now modify existing files or add new files to the project on your own branch.

Make Changes Locally

Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -A flag to add all changes that we have made:

git add -A or git add .

screenshot 155

Next, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way.

screenshot 155

If you have a very short message, you can record that with the -m flag and the message in quotes:

Example:
git commit -m "added myself"

screenshot 156

At this point you can use the git push command to push the changes to the current branch of your forked repository:
Example:
git push origin new-branch

5. Create Pull Request

At this point, you are ready to make a pull request to the original repository.

Navigate to your forked repository, and press the “New pull request” button on your left-hand side of your Repo page.

Hurray!!!

flutter_portfolio_hacktoberfest's People

Contributors

0x01-itsmurphy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.