frozenbanana / WUT2022-HTML-GIT

This is just another git repo to practice git.. and other things computer stuff

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo

  • Open Visual studio code
  • Create a folder to work in
  • In this folder. initalize git so that we have a local git repo!

Answer: use git init inside the folder using the terminal

  • Create a html file called index.html inside folder. The html file should contain a h1 tag and a p tag with text inside.

Answer: go to explorer menu and click on button New File and create index.html. Then fill it with content using ! shortcut and add h1 and p tag.

  • create a repository on Github.

Answer: login to github and do it.

  • stage and commit your local change

Answer: git add <filename>, git commit -m "<message>" in terminal

  • push your commit to your remote repo

Answer: git remote add <your-repo-url>, git push -u origin main

About

This is just another git repo to practice git.. and other things computer stuff


Languages

Language:HTML 100.0%