Created
January 18, 2019 15:05
-
-
Save febritecno/5c914f6b1ae10a8f8f3ead07df2c5c38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//git program folder path | |
C:\Program Files\Git | |
cd /c/"Program Files"/Git | |
git clone https://github.com/git-ftp/git-ftp git-ftp.git | |
cd git-ftp.git && chmod +x git-ftp | |
cp /c/"Program Files"/Git/git-ftp.git/git-ftp /c/"Program Files"/Git/bin/git-ftp | |
git config git-ftp.url ftp://ftp.yourdomain.com/public_html/whatever_path | |
git config git-ftp.user ftp_username | |
git config git-ftp.password ftp_password | |
git add . | |
git commit -m "files changes" | |
git ftp init | |
git add . | |
git commit -m "files changes" | |
git ftp push // send | |
git ftp catchup // for log | |
http://www.codingsips.com/install-configure-git-ftp-windows/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how install git ftp in windows