summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-06-22 14:17:50 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-11-23 10:54:01 +0000
commitd8d7f5f9d26b0a6fa9aa0e8766b8efc889e434c2 (patch)
treebf6732389d818f28efd1ea8f5d86a45d9e2796fa
parentc71727be9070c02b2908fce75daedc76fb3182db (diff)
gpush: remove checks for obsolete config options
this code was in for two years now; it clearly outlived its usefulness. Change-Id: I19310f0afc852c24544ff5f33180c1a9f4d76a9c Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
-rwxr-xr-xbin/git-gpush2
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/git-gpush b/bin/git-gpush
index cded2fa..0e24c6f 100755
--- a/bin/git-gpush
+++ b/bin/git-gpush
@@ -411,8 +411,6 @@ sub load_config()
close_process($cfg);
$remote = git_config('gpush.remote', $remote);
- die("Configuring ref-from is not supported any more.\n") if (git_config('gpush.ref-from'));
- die("Configuring ref-to is not supported any more.\n") if (git_config('gpush.ref-to'));
foreach (keys %gitconfig) {
if (/^gpush\.alias\.(.*)$/) {
$aliases{$1} = git_config($_);