Code Monkey home page Code Monkey logo

resources's Introduction

Hi there, fellow coder! This is a beginner-friendly resource for people like you, and you, and you (no, not you Steve)!

This repository is full of helpful links for people who are just learning to code!

Below you'll find everythig you need on how to contribute to this very same list.

Either if this is your first time coding, or you're a veteran keyboard ninja who just wants to explore and help out, this is the place for you.

Resources

The current web page we will be adding to
I'm borrowing a lot from github docs for this writeup.

Fork the repo

Fork this repository with the Fork button on the top right of this very same page.

You should now have a copy under your name, something like yourname/resources

Create a local clone of your fork

Navigate to your own fork of this project. Select the green "Clone or download" button, and on the dropdown that shows up copy the url that ends with .git.

On your terminal, type the following command: git clone https://github.com/yourname/resources.git

Now, change the directory to your project: cd resources

Set an upstream pointing to the original project

git remote add upstream https://github.com/GlasgowCoderCollective/resources.git

You can check if the remotes are set correctly with: git remote -v

It should print out something like this:

origin https://github.com/yourname/resources.git (fetch)
origin https://github.com/yourname/resources.git (push)
upstream https://github.com/GlasgowCoderCollective/resources.git (fetch)
upstream https://github.com/GlasgowCoderCollective/resources.git (push)

Check for changes

You should check regularly to see if there's any changes in the original code by fetching them git fetch upstream

Checkout your fork's local master branch git checkout master

Merge any changes from upstream/master to your local master branch. git merge upstream/master

In your code editor

Make changes in the index.html file adding your link to some helpful resource, copying the entire links div and editing to include the url and some descriptor. Save any changes

Back in command line

Add and commit

git add index.html

Now make a commit git commit -m "add my link"

At this point you've got your changes on your local copy of the code (on your computer) and you've told git about it by adding and committing. Next you want to push the changes up to your remote copy (your fork on github)

It's a good idea to redo the check for changes section to include anything and avoid problems

Pushing to your remote

git push origin master

your code should now be pushed to your remote.

To do a pull request

In github in your fork, refresh if it was still open

Select the "new pull request" button

resources's People

Contributors

verde79 avatar johnpiatras avatar l3gomancer avatar gauravsharma97 avatar zediwards avatar egarvin91 avatar dharmadev108 avatar rodolfoip avatar rohit21p avatar phaneendrababu avatar hasinichathu avatar harimadhavan2000 avatar bhanukushwah avatar philip-white avatar sunithack1 avatar jesussandreas avatar cpickhardt avatar orestotel avatar compo avatar randika97 avatar guptaravi540 avatar fire2ice avatar siddharthmahapatra12 avatar tompradat avatar vinay72 avatar ammuammu01 avatar brunonepomuceno avatar ccquach avatar jaebirds avatar jeel2308 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.