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
| [antonio@localhost] rsync_project: rsync -pthrvz --rsh='ssh -p 22 ' /var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmpJ0XIrt antonio@localhost:/var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmpLUX7m_ | |
| [localhost] local: rsync -pthrvz --rsh='ssh -p 22 ' /var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmpJ0XIrt antonio@localhost:/var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmpLUX7m_ | |
| Password: | |
| building file list ... done | |
| tmpJ0XIrt/ | |
| tmpJ0XIrt/tmp7BuTNr | |
| sent 110 bytes received 48 bytes 45.14 bytes/sec | |
| total size is 0 speedup is 0.00 | |
| .[antonio@localhost] rsync_project: rsync -pthrvz --rsh='ssh -p 22 ' antonio@localhost:/var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmp4KS64r /var/folders/pq/xk94_z4910s0m0xyh5hyth_h0000gn/T/tmpnYN8AK |
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
| #!/usr/bin/env python | |
| import os | |
| import tempfile | |
| import unittest | |
| import shutil | |
| from fabric.api import * | |
| from fabric.contrib.project import rsync_project | |
| class TestRsync(unittest.TestCase): |
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
| # Source this script in tcsh to setup shell completions | |
| # for git. Completions are activated by typing or Control-D | |
| # in the shell after entering a partial command. | |
| # | |
| # Usage: | |
| # source git-completion.tcsh (e.g. in ~/.cshrc) | |
| # | |
| # Supported completions: | |
| # git (lists git commands) | |
| # git help (lists git commands) |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:param name="ticket" select="__none__" /> | |
| <xsl:output encoding="utf-8" method="xml" indent="yes" /> | |
| <xsl:key use="concat(text(), substring-before(../../msg, ':'))" name="path-key" | |
| match="path" /> | |
| <xsl:template match="log"> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <log> | |
| <path kind="file" action="M">/trunk/file1.txt</path> | |
| <path kind="file" action="M">/trunk/file2.txt</path> | |
| <path kind="file" action="M">/trunk/file4.txt</path> | |
| </log> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:output encoding="utf-8" method="xml" indent="yes" /> | |
| <xsl:key use="text()" name="path-key" | |
| match="path" /> | |
| <xsl:template match="log"> | |
| <xsl:copy> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:param name="ticket" select="__none__" /> | |
| <xsl:output encoding="utf-8" method="xml" indent="yes" /> | |
| <xsl:template match="log"> | |
| <xsl:copy> | |
| <xsl:element name="ticket"> | |
| <xsl:value-of select="$ticket" /> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <log> | |
| <ticket>ISSUE-2</ticket> | |
| <path kind="file" action="M">/trunk/file4.txt</path> | |
| </log> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:param name="ticket" select="__none__" /> | |
| <xsl:output encoding="utf-8" method="xml" indent="yes" /> | |
| <xsl:key use="text()" name="path-key" | |
| match="path" /> | |
| <xsl:template match="log"> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <log> | |
| <ticket>ISSUE-2</ticket> | |
| <path kind="file" action="M">/trunk/file1.txt</path> | |
| <path kind="file" action="M">/trunk/file2.txt</path> | |
| <path kind="file" action="M">/trunk/file1.txt</path> | |
| <path kind="file" action="M">/trunk/file4.txt</path> | |
| </log> |