- Repository - A folder of code, docs, tests, etc.
- Forking - The process of creating a fork.
- A Fork is a copy of a repo.
- Can be used to experiment with someone elses code.
- A Fork is a copy of a repo.
- Cloning - The process of creating a local copy of a repo on your machine.
- Download and install Git
- Navigate to GitDemo on GitHub
- Fork the repo for your user
-
Create a folder to hold your GitHub Repos
New-Item -Path C:\GitHub -ItemType Directory
-
Navigate into the folder
Set-Location C:\GitHub -
Clone the newly forked repo
git clone https://github.com/<<USERNAME>>/GitDemo.git -
Navigate into the repo
Set-Location .\GitDemo\ -
Have a look at the status
git status