Fixed URL to "using git" instructions

BUG=

Review URL: https://codereview.chromium.org/65933005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@235857 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/git_cl.py b/git_cl.py
index ebe285b..03bd879 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -46,7 +46,7 @@
 DEFAULT_SERVER = 'https://codereview.appspot.com'
 POSTUPSTREAM_HOOK_PATTERN = '.git/hooks/post-cl-%s'
 DESCRIPTION_BACKUP_FILE = '~/.git_cl_description_backup'
-GIT_INSTRUCTIONS_URL = 'http://code.google.com/p/chromium/wiki/UsingNewGit'
+GIT_INSTRUCTIONS_URL = 'http://code.google.com/p/chromium/wiki/UsingGit'
 CHANGE_ID = 'Change-Id:'
 
 # Shortcut since it quickly becomes redundant.
@@ -473,7 +473,7 @@
 
   @staticmethod
   def FetchUpstreamTuple(branch):
-    """Returns a tuple containg remote and remote ref,
+    """Returns a tuple containing remote and remote ref,
        e.g. 'origin', 'refs/heads/master'
     """
     remote = '.'
@@ -728,7 +728,7 @@
       files = scm.GIT.CaptureStatus([root], '.', upstream_branch)
     except subprocess2.CalledProcessError:
       DieWithError(
-          ('\nFailed to diff against upstream branch %s!\n\n'
+          ('\nFailed to diff against upstream branch %s\n\n'
            'This branch probably doesn\'t exist anymore. To reset the\n'
            'tracking branch, please run\n'
            '    git branch --set-upstream %s trunk\n'