Difference between revisions of "OPS435 Python Lab 0"

From CDOT Wiki
Jump to: navigation, search
(Overview)
Line 15: Line 15:
 
= Overview =
 
= Overview =
 
:* git - a distributed revision control system with rich command set that provides both high-level operations and full access to git's internals.
 
:* git - a distributed revision control system with rich command set that provides both high-level operations and full access to git's internals.
 +
:* Github - a code hosting platform for version control and collaboration that lets people work together on software projects from anywhere.

Revision as of 22:18, 2 September 2019

Lab Objectives

In this lab, you will create an account on Github and follow the Github "Hello World guide" to create a new public repository on github to learn about the basic workflow of using github to track and manage revisions of software or other contents. The basic workflow includes
  • creating new repository,
  • creating a new branch,
  • making changes to files,
  • creating pull request, and
  • opening and merging a pull request.
You will then use the git client on a Linux machine to access and download the contents from the repository you created on github.

Reference

Overview

  • git - a distributed revision control system with rich command set that provides both high-level operations and full access to git's internals.
  • Github - a code hosting platform for version control and collaboration that lets people work together on software projects from anywhere.