- Repository - a storage location for a file or collection of files
- Git - Version Control - git is an open source softwere (used by github for example) for tracking and reviewing changes in software versions or releases
- Clone - To make a local or remote copy from a repository
- Fork - To create a branch off a master project in order do work on that project without affecting the master project. It is way to manage contributions to a project
- History - a timestamped log of commits to a repository
- Staging - on a local system, the process by which a file is prepared to for a commit
- Remote - a repository (usually a clone to a machine separate from master) from which a developer modifies code
- Commit - the process of adding changes to code
- Push - sending code back to a repository from a local system to be recorded in the repository's commit history
- Fork repository
git clonew/ the repository URL- After Changes Made:
git status git add <file-name>git statusto check what is stagedgit commit -m 'made changes to the Readme'git push
Vijay Das - adding this line to chage the README Note: this is my second pull request, I had not completed assignment the first pull