Horje
config git ftp Code Example
config git ftp
#-----In git Bash-----------
$ git clone https://github.com/git-ftp/git-ftp git-ftp.git
$ cd git-ftp.git && chmod +x git-ftp
$ cp ~/git-ftp.git/git-ftp /bin/git-ftp

#-----In your CMD----------
#Init a git repository on it:
git init
git add .
git commit -m "Initial commit"

#Configure you FTP:
git config git-ftp.user demouser
git config git-ftp.url ftp.example.com/demofolder
git config git-ftp.password demopassword

#Init the git-ftp client:
git ftp init

#Push your changes to FTP:
git ftp push

#Make your changes and commit:
git add someFile.html
git commit -m "Added someFile.html"

#Push your changes again and only what have changed is pushed:
git ftp push




Shell

Related
Failed to execute child process “python” (No such file or directory) Code Example Failed to execute child process “python” (No such file or directory) Code Example
shell open program Code Example shell open program Code Example
github wiki link to another page Code Example github wiki link to another page Code Example
batch remove file Code Example batch remove file Code Example
npm ERR! fatal: not a git repository: /home/node/app/../../.git/modules/ Code Example npm ERR! fatal: not a git repository: /home/node/app/../../.git/modules/ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14