Answers for "deploy html to github pages"

0

deploy html to github pages

# -> Github.com + make public repo
'username.github.io'#, where
# username is your username 
# (or organization name).

# CLONE
git clone https://github.com/username/username.github.io

# COMMIT
git add --all
git commit -m "init commit"

# DONE :)
git push -u origin main

# VIEW :)
# Fire up a browser and go to https://username.github.io.
Posted by: Guest on May-23-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language