Size: 2628
Comment:
|
← Revision 11 as of 2017-06-30 07:18:08 ⇥
Size: 2512
Comment: Updated the repo link
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
== FTP Extension == | = FTP Extension = {X} FTP is insecure and should never be used on the public internet! <<TableOfContents>> == Status == |
Line 4: | Line 9: |
''Author: André Klitzing'' | ''Author: [[AndreKlitzing|André Klitzing]]'' |
Line 6: | Line 11: |
Repository: http://bitbucket.org/misery/hgftp/ | Repository: https://bitbucket.org/misery/hgftp/wiki/Home |
Line 10: | Line 15: |
=== Overview === | == Overview == |
Line 15: | Line 20: |
=== Configuration === | == Configuration == |
Line 17: | Line 22: |
Line 21: | Line 27: |
=== hgrc === ==== [paths] ==== You can add multiple destinations to [paths] like in push/pull. |
|
Line 22: | Line 31: |
==== hgrc ==== ===== [paths] ===== You can add multiple destinations to [paths] like in push/pull. |
|
Line 30: | Line 36: |
You can select it like: | |
Line 31: | Line 38: |
You can select it like: | |
Line 35: | Line 41: |
Or you can provide a complete URL: | |
Line 36: | Line 43: |
Or you can provide a complete URL: | |
Line 40: | Line 46: |
Line 43: | Line 48: |
===== [ftp] ===== | ==== [ftp] ==== |
Line 53: | Line 58: |
=== Options === |
== Options == |
Line 59: | Line 62: |
||-a ||--all ||upload all files of a changeset; do not use the difference || ||-d ||--dir ||CHMOD new directories to given mode || ||-f ||--file ||CHMOD new/changed files to given mode || ||-g ||--global ||make the tag global || ||-o ||--only ||only upload or remove files; do not set a tag || ||-r ||--rev ||revision that will be uploaded || ||-s ||--show ||show files that will be uploaded or deleted || ||-t ||--tag ||use another tag name || ||-u ||--upload ||start uploading or removing changed files || |
|
Line 60: | Line 72: |
|| -a || --all || upload all files of a changeset; do not use the difference || || -d || --dir || CHMOD new directories to given mode || || -f || --file || CHMOD new/changed files to given mode || || -g || --global || make the tag global || || -o || --only || only upload or remove files; do not set a tag || || -r || --rev || revision that will be uploaded || || -s || --show || show files that will be uploaded or deleted || || -t || --tag || use another tag name || || -u || --upload || start uploading or removing changed files || |
|
Line 74: | Line 78: |
FTP Extension
FTP is insecure and should never be used on the public internet!
Contents
Status
This extension is not distributed with Mercurial.
Author: André Klitzing
Repository: https://bitbucket.org/misery/hgftp/wiki/Home
Accouncement: http://markmail.org/thread/hly5zftmszqiq5iz
Overview
Upload snapshots of a revision to one or more FTP server.
It will upload all files of a revision and set a (local) tag like "uploaded@host". If it will find an existing tag for that host it will remove vanished files and upload only the difference between that revision and the new one.
Configuration
To enable this extension, add this to your .hgrc file:
[extensions] hgext.ftp = /path/to/ftp.py
hgrc
[paths]
You can add multiple destinations to [paths] like in push/pull.
[paths] ftp = ftp://[user[:pass]@]host[:port]/[path] myhost = ftp://andre@incubo.de/htdocs
You can select it like:
hg ftp myhost
Or you can provide a complete URL:
hg ftp ftp://user:psw@host/basedir
If you don't provide a Destination it will use ftp in [paths] by default.
[ftp]
If you add chmod_file or chmod_dir it will CHMOD it on upload. If there is no option for chmod the extension won't call "SITE CHMOD" on ftp server.
[ftp] chmod_file = 644 chmod_dir = 755 global_tags = False prefix_tags = uploaded@
Options
There are some options that can overwrite settings in your hgrc.
The extension will only start uploading / removing your files if you provide --upload as an option. A tag will only be set if upload was successful.
-a |
--all |
upload all files of a changeset; do not use the difference |
-d |
--dir |
CHMOD new directories to given mode |
-f |
--file |
CHMOD new/changed files to given mode |
-g |
--global |
make the tag global |
-o |
--only |
only upload or remove files; do not set a tag |
-r |
--rev |
revision that will be uploaded |
-s |
--show |
show files that will be uploaded or deleted |
-t |
--tag |
use another tag name |
-u |
--upload |
start uploading or removing changed files |
If --rev is not provided it will use the current revision of your working dir. But it won't use uncommitted changes of that working dir.
There will be no prefix if you use --tag!