Computers II

From TSAS Library
Revision as of 17:24, 17 November 2016 by JStallings (talk | contribs)
Jump to: navigation, search

Class GitHub organization.

Class syllabus (woefully incomplete).

Gradebook.

Current Projects

Hey friends! Sorry I'm not there today, but I am sure you'll have a good time with this.

At the moment your GitHub account does not have a picture associated with it! If you look over to our GitHub organization (link at the top of this page), you'll see an .svg file that I built is set as our "organization" image. Here is the file:

BlueCirclePrintrBot.svg

There are lots of tutorials out there about making a personal brand/icon in Inkscape.


Some things to know about Git and GitHub:

  • Branch a version of your repository. You may have several branches in each project, edited by many people, or to keep track of attempted alterations to your main, Master, branch. Create a new branch at the commit action, or by selecting the branch in dropdown. (See a cool visualization of these changes by clicking the "Graphs" tab on your main page, then choosing "Network"!)
  • Merge combine the main files in the master branch with those in another branch. This allows you to choose whether or not to apply the changes suggested by others, or to apply the attempted alterations you made in a branch.[1]
  • Fork allows you to copy an entire repo, either your own or another's, into your account. This includes the history, as well.
  • Pull request is the action of asking the owner of a repo to "pull" your branch into the main repository on their account.[2]

Upcoming

Previous Projects

Building beautiful things in Inkscape:

Some things to know about Git and GitHub:

  • Repository (or "repo") is a folder or directory containing all of the files within a project.
  • Commit is the action of adding a new file, or applying changes to the files, within a repo.
  • History shows the changes made to the repo by each commit. Note that you can go back to a previous version to undo your changes with this!
  • Commit hash is a unique identifier for each commit action. This allows you to share previous versions and control your changes.[3]

References