Skip to content

digbmc/git-hub-ws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Workshop: Git, GitHub, Markdown

Link to presentation

Installation instructions

Before we get started, please:

  1. Sign up for a GitHub account at github.com
  2. Install Visual Studio Code: code.visualstudio.com
  3. Install Git, following these instructions: git-scm.com/download

Versioning Vocabulary

Repo or repository (n.) : A discrete project on GitHub that contains a set of files, a change history, and a set of contributors. (E.g. this one)

Fork (v.) : To copy a repo's files and version history to a new one with its own settings (preserves connection with original repo but doesn't interfere).

Clone (v.) : To download a local copy of a repo on GitHub with a tracked connection to the remote repo.

Local (adj.) : On your computer.

Remote (adj.) : On someone else's computer (aka 'the cloud').

Branch (n.) : A version of a repository with its own history. Branches can be created for a unique set of changes and later merged with the main branch to avoid file conflicts.

Commit (n.) : A discrete set of changes to a project that have been packaged and labeled.

Markdown Syntax


# First level heading 

## Second-level heading

Paragraph with **bold** text and *italicized* text. 

[This is linked text](www.myurl.com)

![This is an image with alt text](imageurl.jpg)

See also this cheat sheet for more markdown syntax.

a change

Releases

No releases published

Packages

No packages published