Basic Terms
Repositories
GitHub Logic
More GitHub Logic
Other Logic
100

This is what DHCP stands for.

What is Dynamic Host Configuration Protocol? 

100

This is a place designated for storage. 

What is a repository? 
100

This is a website for hosting source code in Git. It is the most common place to share and collaborate on open source projects, and can also be used to host private repositories for companies.

What is GitHub? 

100

This command Tells git to track files. 

What is git add? 

100

This command Adds new remote repository. For example connecting your local repository to GitHub. 

What is git remote add origin <url>? 

200

Manually assigned IP address are known as this. 

What is Static IP? 

200

This repository has officially supported software. 

What is Main Repository? 

200

This command Displays the state of the working directory and the staging area. It lets you see which changes have been staged, which haven't, and which files aren't being tracked by Git. 

What is git status? 

200

This command Add new remote repository. For example connecting your local repository to GitHub. 

What is git commit -m "message"? 

200

This is a process to keep track of what changes were made to what files so that a specific version can be referred to and improvements in multiple versions can be merged together. 

What is Version Control? 

300

This determines your permissions on the network. 

What is a netmask? 

300

This repository has supported software that is not available under a completely free license. 

What is Restricted Repository? 

300

This command Copies an existing Git repository. You can clone or download a zip file from GitHub 

What is clone? 

300

This command Sends changes to the master branch of your remote repository. For example send changes to GitHub. 

What is git push -u origin main 

300

This is Linux package extension for Ubuntu 

What is  .deb? 

400

This allows you access from inside the network to outside the network (router) 

What is a gateway? 

400

This repository has Community maintained software. 

What is Universe Repository? 

400

This is A version control system for tracking changes in computer files and coordinating work on those files among multiple people. 

What is git? 

400

This command compares the files in staging area with the files in working directory 

What is git diff? 

400

This is a debian based program used to interact with a repository. 

What is apt? 

500

This service translates URLs to IP addresses. 

What is a DNS? 

500

This repository has Software that is not free. 

What is Multiverse Repository? 

500

This command Initializes a new Git repository. Creates a .git subdirectory in the project root, which contains all of the necessary metadata for the repo. Aside from the .git directory, an existing project remains unaltered. 

What is git init? 

500

These are the steps in git. 

What are:

Step1: git add *
Step2: git commit -m 'message'
Step3: git push origin main

500

This command installs an individual package or program you've downloaded. 

What is dpkg?