From Fedora Project Wiki

(Created page with '== Description == Release Engineering is often asked by maintainers to remove branches in dist-git by maintainers. == Action == 1. Log into pkgs.fedoraproject.org <pre> ssh <fas...')
 
Line 8: Line 8:
2. Change to the package's directory
2. Change to the package's directory
<pre>cd /srv/git/rpms/<package>.git/</pre>
<pre>cd /srv/git/rpms/<package>.git/</pre>


3. Remove the branch  
3. Remove the branch  
<pre>git branch -D <branchname> </pre>
<pre>git branch -D <branchname> </pre>


== Verification ==
== Verification ==

Revision as of 01:53, 3 September 2010

Description

Release Engineering is often asked by maintainers to remove branches in dist-git by maintainers.

Action

1. Log into pkgs.fedoraproject.org

 ssh <fas-username>@pkgs.fedoraproject.org

2. Change to the package's directory

cd /srv/git/rpms/<package>.git/

3. Remove the branch

git branch -D <branchname> 

Verification

  • FIXME--anything to add here?

Consider Before Running

  • FIXME--anything to add here?