Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Web Work Flows

Web Work Flows

A short talk on web work flow and tools for UCF's Masters of Web student organization

John Costallos

April 18, 2014
Tweet

Other Decks in Design

Transcript

  1. Git Terminal Commands • git init - Initializes a git

    repository within the current directory you are in. • git status - Shows the current status of the project, displays what files have been changes and which files are staged and ready to be commited. • git add {index.html} - Adds the file to the staging area and git to start tracking the file and watch for changes. • git commit -m “this is a commit message” - Stores our staged changes with a message describing what was changed. • git log - Displays a log of all the commits we’ve made so far. • git remote add origin https://github.com/gituser/reponame.git - Connects the initialized repository to the remote repository located on github. ! • git push -u origin master - Tells git where in the repository to put our commits. • git pull origin master - Pulls down any new changes from the master repository to your local copy of the repository. • git clone https://github.com/gituser/reponame.git - Clones a local copy of a repository on github into a newly created directory, also initializes and begins watching the directory.
  2. Education Tools • Codeschool (http://codeschool.com) ! • Team Treehouse (http://teamtreehouse.com/)

    ! • Meetups (Local Orlando) ! • Conferences (Front-End Design Conference)
  3. Other Tools I Prefer • FTP Client (Transmit) Allows you

    to mount drives directly, convenient for preprocessing. ! • Local Server (MAMP) ! • Browsers (Chrome & Firefox Aurora) ! • Dev Tools (Firebug, Web Dev Toolbar) ! • Music (Spotify - Playlists)