Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions configurebzconfigs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

echo "Koha git-bz configuration setting script"
git config bz.default-tracker bugs.koha-community.org
git config bz.default-product Koha
git config --global bz-tracker.bugs.koha-community.org.path /bugzilla3
git config --global bz-tracker.bugs.koha-community.org.https true
git config --global core.whitespace trailing-space,space-before-tab
git config --global apply.whitespace fix

read -p "Enter your Koha Bugzilla username: " username
git config --global bz-tracker.bugs.koha-community.org.bz-user $username

read -p "Enter your Bugzilla password: " password
git config --global bz-tracker.bugs.koha-community.org.bz-password $password