Skip to content

Instantly share code, notes, and snippets.

View idusortus's full-sized avatar

Sam Johnson idusortus

  • FS-Consulting
  • Green Bay, WI
  • 02:16 (UTC -05:00)
View GitHub Profile
[
{
"name": "Its in the Book",
"slug": "monday-dcdc",
"day": 1,
"time": "19:30",
"location": "DC DC Divine Center",
"updated": "2019-05-04 14:32:23",
"url": "http://greenbayaa.org/meetings.html",
"types": [
[
{
"name": "Its in the Book",
"slug": "monday-dcdc",
"day": 1,
"time": "19:30",
"location": "DC DC Divine Center",
"updated": "2019-05-04 14:32:23",
"url": "http://greenbayaa.org/meetings.html",
"types": [
@idusortus
idusortus / GitBasicsForGreenbayaa.txt
Last active April 30, 2021 15:31
Git Installation and Usage Basics for GBAA Custodians
If you have a Lynda.com account, this video provides a lightweight overview of Git and GitHub.
- https://www.lynda.com/GitHub-tutorials/GitHub-Web-Designers/162276-2.html
Don't have a Lynda account? You can use your Brown County Library card to get free access!
- https://www.lynda.com/portal/sip?org=browncountylibrary.org
The (Optional) steps are helpful for Windows users who prefer a Unix style working environment. Note that Git is not a prerequestite for Cmder. I beleive Cmder will work just fine without installing Git First. I installed Cmder after installing Git so I cannot confirm.
Command Line Summary:
- Download and install Git https://git-scm.com/downloads
public class GrowingUp
{
public static void main (String args[])
{
Infant newBorn = new Infant("Conrad");
System.out.println("\nHere is what an Infant can do:");
newBorn.crawl();
Child aChild = new Child("Bryce");