- Remove the third argument of error_on_missing_default_upstream that is no
  longer required
- FIXME to remove this argument was added in commit 045fac5845
- Run "grep" on the rest of the codebase to find and remove occurences of
  the third argument and fix the function calls appropriately

Signed-off-by: Siddharth Kannan <kannan.siddhart...@gmail.com>
---
The contrib/examples/git-pull.sh file also has a variable op_prep which is used
in one of the messages shown the user. Should I remove this variable as well?

 contrib/examples/git-pull.sh | 2 +-
 git-parse-remote.sh          | 3 +--
 git-rebase.sh                | 2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/contrib/examples/git-pull.sh b/contrib/examples/git-pull.sh
index 6b3a03f..1d51dc3 100755
--- a/contrib/examples/git-pull.sh
+++ b/contrib/examples/git-pull.sh
@@ -267,7 +267,7 @@ error_on_no_merge_candidates () {
                echo "for your current branch, you must specify a branch on the 
command line."
        elif [ -z "$curr_branch" -o -z "$upstream" ]; then
                . git-parse-remote
-               error_on_missing_default_upstream "pull" $op_type $op_prep \
+               error_on_missing_default_upstream "pull" $op_type \
                        "git pull <remote> <branch>"
        else
                echo "Your configuration specifies to $op_type $op_prep the ref 
'${upstream#refs/heads/}'"
diff --git a/git-parse-remote.sh b/git-parse-remote.sh
index d3c3998..9698a05 100644
--- a/git-parse-remote.sh
+++ b/git-parse-remote.sh
@@ -56,8 +56,7 @@ get_remote_merge_branch () {
 error_on_missing_default_upstream () {
        cmd="$1"
        op_type="$2"
-       op_prep="$3" # FIXME: op_prep is no longer used
-       example="$4"
+       example="$3"
        branch_name=$(git symbolic-ref -q HEAD)
        display_branch_name="${branch_name#refs/heads/}"
        # If there's only one remote, use that in the suggestion
diff --git a/git-rebase.sh b/git-rebase.sh
index 04f6e44..b89f960 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -448,7 +448,7 @@ then
                then
                        . git-parse-remote
                        error_on_missing_default_upstream "rebase" "rebase" \
-                               "against" "git rebase $(gettext '<branch>')"
+                               "git rebase $(gettext '<branch>')"
                fi
 
                test "$fork_point" = auto && fork_point=t
-- 
2.1.4


Reply via email to