Skip to content

rdquintas/ricardoquintas.com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is the repo for the website:

Para testar no GITHUB (branch MASTER)

http://rdquintas.github.io/ricardoquintas.com

Some details

  • uses git-ftp to deploy using FTP from the console

How to deploy with GIT FTP ?

  • Setup

    git config git-ftp.url "ftp://ftp.example.net:21/public_html"

    git config git-ftp.user "ftp-user"

    git config git-ftp.password "secr3t"

  • Or if the files are already there

    git ftp catchup

  • Work and deploy

    echo "new content" >> index.txt

    git commit index.txt -m "Add new content"

    git ftp push