C-D-theory

πŸ“… Containerization & DevOps β€” Class Notes


πŸ“… Class 9 April

Git Basics β€” Create New Repository From Scratch

Objective

Learn basic Git commands to create a new repository and push it to GitHub.


Outputs

C Program

C Program

Commands Used

```bash echo β€œ# demo001” » README.md git init git add README.md git commit -m β€œfirst commit” git branch -M main git remote add origin git@github.com:username/demo001.git git push -u origin main