Skip to content

Raj2710/FSD-WE-T-B9

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  1. First create a folder myfirstapp
  2. Open VS code editior and click File
  3. In the file options select open folder and select the folder created(myfirstapp)
  4. Once you are inside vs code. Create a file and name it as index.html
  5. Write the html code and save it.
  6. Now right click the file and selct copy path
  7. Open browser and past the copied path
  8. Now everytime we make the changes. Save the file and refresh the tab in the browser to see the changes.

How to push code to github?

  1. git init - will create a local repository for the spicefied project(only for the first time)
  2. git add . - It will add all the files to the local repository
  3. git commit -m "Commit messages" - This will save all the files to the local repo
  4. git remote add origin url - This will connect the local repo to the remote repo(only for the first time)
  5. git push -u origin master - all your local changes will be pushed to the remote repository

If you are pushing the code for an existing repo

  1. git add .
  2. git commit -m "commit message"
  3. git push

Github tutorial tamil - https://youtu.be/VIBWdLLq9kQ?si=y5W4F5DC_HNllpIb Github tutorial english - https://youtu.be/tRZGeaHPoaw?si=6xfzztaOwFqyWHDz

Releases

No releases published

Packages

No packages published

Languages