blob: 1aad51bb2d4f6de3063773339d7d1ea6dabc9077 [file] [log] [blame]
Everton Marques871dbcf2009-08-11 15:43:05 -03001#! /bin/bash
2#
3# Savannah Developer Git Checkout
4#
5# Delete remote branch qpimd: git push origin :qpimd
6# (git push origin :refs/heads/branch_to_delete)
7# Delete remote tag v0.139: git push origin :v0.139
8# (git push origin :refs/tags/tag_to_delete)
9# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
10# Rename branch qpimd to pim: git branch -m qpimd pim
11# Commit changes: git commit -a
12# Send changes: git push --all
13#
Everton Marquese96f0af2009-08-11 15:48:02 -030014# Recipe to re-sync with Quagga repository:
15# git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga
16# cd quagga
17# git checkout master
18# git pull git://code.quagga.net/quagga.git master
19# git checkout -b pim origin/pim
20# git rebase master pim
21# # Test, then push back into Savannah repository:
22# git push origin :pim ;# delete remote branch pim
23# git push --all
24#
Everton Marques871dbcf2009-08-11 15:43:05 -030025# $QuaggaId: $Format:%an, %ai, %h$ $
26
27git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga