<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns="http://purl.org/rss/1.0/">




    



<channel rdf:about="http://danilodellaquila.com/inizio/RSS">
  <title>Home</title>
  <link>http://danilodellaquila.com</link>

  <description>
    
      In questo blog potrete trovare informazioni riguardanti Linux, Plone, il software Open Source in generale e tutto ciò che attraversa la mia mente.
    
  </description>

  

  
            <syn:updatePeriod>daily</syn:updatePeriod>
            <syn:updateFrequency>1</syn:updateFrequency>
            <syn:updateBase>2011-12-06T22:05:33Z</syn:updateBase>
        

  <image rdf:resource="http://danilodellaquila.com/logo.png"/>

  <items>
    <rdf:Seq>
      
        <rdf:li rdf:resource="http://danilodellaquila.com/blog/git-rimuovere-un-tag-o-un-branch-sul-server-remoto"/>
      
    </rdf:Seq>
  </items>

</channel>


  <item rdf:about="http://danilodellaquila.com/blog/git-rimuovere-un-tag-o-un-branch-sul-server-remoto">
    <title>Git: rimuovere un tag o un branch sul server remoto</title>
    <link>http://danilodellaquila.com/blog/git-rimuovere-un-tag-o-un-branch-sul-server-remoto</link>
    <description>Qui puoi trovare i comandi per rimuovere un tag o un branch su un server remote Git</description>
    <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Faccio fatica a ricordarmi i comandi per rimuovere un tag o un branch da un repository Git sul server remoto.</p>
<p>In realtà non è così difficile se ci ricordiamo della sintassi del comando <code>git push, </code>Scott Chacon lo spiega vbene nel suo libro <a class="external reference external-link" href="http://progit.org/book/ch3-5.html">ProGit book</a>.</p>
<p class="callout"><i>A way to remember this command is by recalling the</i> <code>git push [remotename] [localbranch]:[remotebranch]</code> <i>If you leave off the [localbranch] portion, then you’re basically saying, "Take nothing on my side and make it be [remotebranch]".</i></p>
<p>Quindi si tratta solo di fare un push di un branch/tag vuoto al branch/tag remoto.</p>
<p>Supponiamo che remotename è  <code>origin </code> e remotebranch è  <code>serverfix</code>, il comando per rimuovere un branch remote è:</p>
<pre class="literal-block">$ git push origin :serverfix<br /></pre>
<p>e quello per rimuovere un tag remoto è:</p>
<pre class="literal-block">$ git push origin :refs/tags/serverfix<br /></pre>
<p>SpiderWeb</p>]]></content:encoded>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>Danilo Dellaquila</dc:creator>
    <dc:rights></dc:rights>
    <dc:date>2011-12-08T15:25:00Z</dc:date>
    <dc:type>Blog Entry</dc:type>
  </item>





</rdf:RDF>

