Git Product home page Git Product logo

hackyhours's Introduction

This repository is for lessons taught during Hacky Hour at University
of Washington Atmospheric Sciences.


Some git tips

I recommend that you fork this repo so you make a copy in you own
account.  Then you can add stuff to your copy of the repo. Just hit
the "Fork" button in the upper left.

Then clone your repository
> git clone https://github.com/whateveritis

Once you have your own repo and you want to put a file on your local
repository back up on git, go to the directory of this README and type
the following:

> git status
> git add subdirectory/filename
> git commit -m "some text to say what you are committing"
> git push

At some point if you'd like to get the latest stuff from this master
repo (it's a good idea make sure your own repository is up to date
first), type the following:

> git remote add upstream https://github.com/cmbitz/HackyHours.git
> git fetch upstream
> git merge upstream/master

or we think equivalently 

> git remote add upstream https://github.com/cmbitz/HackyHours.git
> git pull upstream master


---------------------- the following is not recommended ----

However if you don't want to add stuff to the master you can just do
the following.

To "clone" or download a copy of this repo on your local computer, go
to a place you'd like to put it on your local harddrive. Then type the
command below. FYI, you don't need to fork the repo (which means to
duplicate the repo on GitHub under your account) since you are welcome
to have write access to this "group" repo.

> git clone https://github.com/cmbitz/HackyHours


If you want to put a file on the repo (and CC has added you as a
contributor so you have write access), go to the directory of this
README and type the following:

> git status
> git add subdirectory/filename
> git commit -m "some text to say what you are committing"
> git push


hackyhours's People

Contributors

andrewpauling avatar cmbitz avatar lettie-roach avatar marie-mcgraw 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.