Giter Site home page Giter Site logo

uikit-sketching's Introduction

UiKit-Sketching 🐍💸🏦

HTML5 Sketching with UiKit

Usage

Let's start NewProject using the UiKit-Sketching Framework as a starting point.

$ git clone https://github.com/marcelreschke/uikit-sketching.git NewProject
$ cd NewProject/

To push or pull updates to or from the Framework repository, add the repository as "upstream" and remove it as "origin".

$ git remote add upstream https://github.com/marcelreschke/uikit-sketching.git
$ git remote remove origin

Now we need a new remote origin repository. Therefor I create a bare repository in my Dropbox, add it and push it. Also I create a new branch upstream

$ git init --bare ~/Dropbox/git/NewProject.git
$ git remote add origin ~/Dropbox/git/NewProject.git
$ git push origin master
$ git branch upstream

Now we have our NewProject repository created with our bare copy of Uikit-Sketching committed and pushed up.

We start using Uikit-Sketching like this:

$ npm install
$ bower install
$ gulp

Updating Uikit-Sketching or NewProject

When we have changes in Uikit-Sketching that we want to fold back in to NewProject, we can do this:

$ git checkout upstream
$ git pull upstream master  
$ git checkout master
$ git merge upstream  

And if we have some changes to the framework that we want to go back to Uikit-Sketching:

$ git log  
# *find the sha of the commit we want*
$ git checkout upstream  
$ git cherrypick [sha of the commit we want]  
$ git push upstream upstream:master  

UiKit-Sketching © 2014+, Marcel Resche, Dortmund, Germany. Released under the MIT License.
Authored and maintained by Marcel Reschke.

marcelreschke.com  ·  GitHub @marcelreschke  ·  Twitter @marcelreschke

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.