Skip to content

sunilpatilsnd/git_test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

git_test

My First Repo! Hello Odin!

We can create new git repository by clicking on the + icon in the header and click on new repository.

We can copy a repository on to local machine by using git clone [email protected]:user_name/repository_name.git

The default name of the connection is origin

origin in git push origin main is the connection name

main is the name of the branch we are pushing the code to.

git has two stages named staging and commit. (Commit is like a waiting room for the changes before they are pushed to remote reposite).

We can check the status of the files in git by the command git status.

We can add the files to staging area by the command git add file_name or git add .

We can commit the files in staging area by the command git commit -m "commit message".

We can push the committed changes to remote repository by the command git push origin master

We can look at the history of the commits by using the command git log

HTML, CSS , JS Questions

HTML stands for Hypertext Markup Language. CSS stands for Cascading Style Sheets

HTML will be used to put a paragraph on a page.

CSS will be used to change the font and background of the text or page.

HTML adds structure to the webpage CSS adds cosmetic styles and designes to the webpage , js adds interactivity and functionality to the webpage.

Elements and Tags

HTML tags are the identifiers with opening and closing tags that contains content in it.

HTML tags contains three elements , opening tags, closing tags and content

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published