github repository.
diff --git a/pimd/README b/pimd/README
index f6bd8ec..1e3f72c 100644
--- a/pimd/README
+++ b/pimd/README
@@ -38,7 +38,7 @@
qpimd lives at:
- http://savannah.nongnu.org/projects/qpimd
+ https://github.com/udhos/qpimd
PLATFORMS
@@ -124,7 +124,7 @@
Please post comments, questions, patches, bug reports at the
support site:
- http://savannah.nongnu.org/projects/qpimd
+ https://github.com/udhos/qpimd
RELATED WORK
diff --git a/pimd/github-git-clone.sh b/pimd/github-git-clone.sh
new file mode 100755
index 0000000..ea359b0
--- /dev/null
+++ b/pimd/github-git-clone.sh
@@ -0,0 +1,27 @@
+#! /bin/bash
+#
+# Github Developer Git Checkout
+#
+# Delete remote branch qpimd: git push origin :qpimd
+# (git push origin :refs/heads/branch_to_delete)
+# Delete remote tag v0.139: git push origin :v0.139
+# (git push origin :refs/tags/tag_to_delete)
+# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
+# Rename branch qpimd to pim: git branch -m qpimd pim
+# Commit changes: git commit -a
+# Send changes: git push --all
+#
+# Recipe to re-sync with Quagga repository:
+# git clone https://github.com/udhos/qpimd
+# cd qpimd
+# git checkout master
+# git pull git clone http://git.sv.gnu.org/r/quagga.git master
+# git checkout -b pim origin/pim
+# git rebase master pim
+# # Test, then push back into Github repository:
+# git push origin :pim ;# delete remote branch pim
+# git push --all
+#
+# $QuaggaId: $Format:%an, %ai, %h$ $
+
+git clone https://github.com/udhos/qpimd
diff --git a/pimd/pimd.h b/pimd/pimd.h
index 0990088..68b1199 100644
--- a/pimd/pimd.h
+++ b/pimd/pimd.h
@@ -31,7 +31,7 @@
#define PIMD_PROGNAME "pimd"
#define PIMD_DEFAULT_CONFIG "pimd.conf"
#define PIMD_VTY_PORT 2611
-#define PIMD_BUG_ADDRESS "http://savannah.nongnu.org/projects/qpimd"
+#define PIMD_BUG_ADDRESS "https://github.com/udhos/qpimd"
#define PIM_IP_HEADER_MIN_LEN (20)
#define PIM_IP_HEADER_MAX_LEN (60)