Git Product home page Git Product logo

first-contributions's Introduction

First Contributions

fork this repository

Read this in other languages: English, Spanish, Dutch, Hindi Russian Japanese

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

Fork this repository

Fork this repo by clicking on the fork button

Clone the repository

clone this repository

Now clone this repo to your machine. Click on the clone button and then 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 quote marks) is the url to this repository. See the previous steps to obtain the url.

copy URL to clipboard

For example:

git clone https://github.com/this-is-you/first-contributions.git

Where 'this-is-you' is your github username. Here you're copying the contents of first-contributions repository in github to your computer

Create a branch

Change to the repository directory on your computer if you are not already there.

cd first-contributions

Now create a branch using git checkout command

git checkout -b <add-your-name>

For example:

git checkout -b add-alonzo-church

Make necessary changes and commit those changes

Now open Contributors.md file in a text editor and add your name to it, then save the file. If you go to the project directory and do git status, you'll see there are changes. Add those changes using the below git add commad.

git add Contributors.md

Now commit those changes using the below git commit command.

git commit -m "Add <your-name> to Contributors list"

replace <your-name> with your name

Push changes to github

Push your changes using git push

git push origin <add-your-name>

Replace <add-your-name> with the name of the branch you created earlier

Submit your changes for review

If you go to your repository on github, you'll see Compare & pull request button. click on that button.

create a pull request

Now submit the pull request.

submit pull request

Keeping your fork synced with this repository

Now I'll be merging all your changes into the master branch of this project. Your fork won't have those changes. In order to keep your fork synced with mine, add my repo's url as upstream remote url.

git remote add upstream https://github.com/Roshanjossey/first-contributions

This is a way of telling git that another version of this project exists in the specified url and we're calling it master. Once the changes are merged, fetch the new version of my repository.

git fetch upstream

Here we're fetching all the changes in my fork (upstream remote). Now, you need to merge the new revision of my repository into your master branch.

git rebase upstream/master

Here you're applying all the changes you fetched to master branch. If you push master branch now, your fork will also have the changes

git push origin master

Notice here you're pushing to the remote named origin.

Where to go from here?

You will find many beginner-friendly issues on: contributor.ninja.

Here's some beginner level issues in popular repos that you can solve. Go ahead and go to those repos to learn more

exercism fun-retro habitat scikit-learn elasticsearch
exercism Fun Retros react habitat scikit-learn Leiningen numpy elasticsearch
homebrew rust vuejs Suave OpenRA PowerShell coala moment
homebrew Rust vuejs Suave OpenRA PowerShell coala moment
ava freeCodeCamp webpack hoodie pouchdb neovim babel
ava freeCodeCamp webpack hoodie pouchdb neovim babel brackets
Node.js
Node.js

first-contributions's People

Contributors

aconex-hackathon avatar adityabhushan avatar ajborka avatar angadgill92 avatar b-random avatar dmitrika avatar gmuraleekrishna avatar halllinux avatar heman-r avatar immutableglitch avatar jaspreet-singh-19 avatar jj92123921 avatar jonjohnson34 avatar kmlmhnn avatar lakshmishruthi avatar lrigh1 avatar luarca84 avatar m-arav avatar palashshah avatar raigon44 avatar shrut1996 avatar sotayamashita avatar tapanprakasht avatar thibmaek avatar virtualcycle avatar xtuc avatar zayelion avatar

Watchers

 avatar  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.