Skip to content

LinearSix/GIT_Assessment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Explain what a version control system is.
A VCS is a way to track revisions of your project/code and view/revert to earlier versions if desired.

Explain why a version control system is important.
A VCS is important because it allows the user to revert to earlier versions of files mistakes are made.

Explain what Git is.
A free, open-source VCS (delvoped by the maker of Linux)

Initialize a Git repository.
How about 2 instead?
* CLI_Assessment
* GIT_Assessment

Add and commit changes to a Git repository.
Added README.md to both repositories (using terminal)

Explain what GitHub is.
GitHub is a server which allows hosting of GIT repositories to help facilitate collaboration.
It also acts as a safe backup for repository information in case of local repository failure or
corruption.

Push commits from a local repository to a remote repository.
Pushed assignment content additions of README.md files to CLI_Assessment and GIT_Assessment.

GIT Assessment
Know the following:

Why do we use Git?
* For version control
* In case we need to view, access, or restore and earlier version of a file

What is the difference between Git and Github
* Git is a VCS.
* GitHub is server which hosts Git repositories for collaboration and backup.

How does Git work?
* Files are staged for addition (or not) into the next revision using git commands
* git add + filename stages the file(s) to be revised
* git commit -m 'comment' essentially seals and labels the package of files to be sent to the VCS
* git push completes the upload of committed files to the VCS

What is a Git repository?
* A folder that has been designated (initialized) as a Git VCS directory

Initialize a Git repository
* completed

add and commit changes to a Git repository
* Oh so many changes

Add remote destinations to your local Git repository
* Two of them

push commits from your local Git repository to a remote repository
* I pushed it good

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published