Git fork

correct spelling: an URL -> a URL

Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Jim Meyering and committed by
Junio C Hamano
a7793a74 59012e20

+9 -9
+1 -1
Documentation/git-submodule.txt
··· 190 190 sync:: 191 191 Synchronizes submodules' remote URL configuration setting 192 192 to the value specified in .gitmodules. It will only affect those 193 - submodules which already have an url entry in .git/config (that is the 193 + submodules which already have a URL entry in .git/config (that is the 194 194 case when they are initialized or freshly added). This is useful when 195 195 submodule URLs change upstream and you need to update your local 196 196 repositories accordingly.
+2 -2
Documentation/gitmodules.txt
··· 28 28 be unique within the .gitmodules file. 29 29 30 30 submodule.<name>.url:: 31 - Defines an url from where the submodule repository can be cloned. 31 + Defines a URL from which the submodule repository can be cloned. 32 32 This may be either an absolute URL ready to be passed to 33 33 linkgit:git-clone[1] or (if it begins with ./ or ../) a location 34 34 relative to the superproject's origin repository. ··· 84 84 85 85 This defines two submodules, `libfoo` and `libbar`. These are expected to 86 86 be checked out in the paths 'include/foo' and 'include/bar', and for both 87 - submodules an url is specified which can be used for cloning the submodules. 87 + submodules a URL is specified which can be used for cloning the submodules. 88 88 89 89 SEE ALSO 90 90 --------
+1 -1
Documentation/howto/using-merge-subtree.txt
··· 25 25 situation. 26 26 27 27 In this example, let's say you have the repository at `/path/to/B` (but 28 - it can be an URL as well, if you want). You want to merge the 'master' 28 + it can be a URL as well, if you want). You want to merge the 'master' 29 29 branch of that repository to the `dir-B` subdirectory in your current 30 30 branch. 31 31
+1 -1
contrib/svn-fe/svn-fe.txt
··· 51 51 and 'UUID' the repository's identifier. 52 52 53 53 To support incremental imports, 'svn-fe' puts a `git-svn-id` line at 54 - the end of each commit log message if passed an url on the command 54 + the end of each commit log message if passed a URL on the command 55 55 line. This line has the form `git-svn-id: URL@REVNO UUID`. 56 56 57 57 The resulting repository will generally require further processing
+1 -1
http.c
··· 829 829 } 830 830 831 831 /* 832 - * Downloads an url and stores the result in the given file. 832 + * Downloads a URL and stores the result in the given file. 833 833 * 834 834 * If a previous interrupted download is detected (i.e. a previous temporary 835 835 * file is still around) the download is resumed.
+1 -1
http.h
··· 127 127 #define HTTP_NOAUTH 5 128 128 129 129 /* 130 - * Requests an url and stores the result in a strbuf. 130 + * Requests a URL and stores the result in a strbuf. 131 131 * 132 132 * If the result pointer is NULL, a HTTP HEAD request is made instead of GET. 133 133 */
+1 -1
perl/Git.pm
··· 691 691 contains the tag object while a C<refname^{}> entry gives the tagged objects. 692 692 693 693 C<REPOSITORY> has the same meaning as the appropriate C<git-ls-remote> 694 - argument; either an URL or a remote name (if called on a repository instance). 694 + argument; either a URL or a remote name (if called on a repository instance). 695 695 C<GROUPS> is an optional arrayref that can contain 'tags' to return all the 696 696 tags and/or 'heads' to return all the heads. C<REFGLOB> is an optional array 697 697 of strings containing a shell-like glob to further limit the refs returned in
+1 -1
transport.c
··· 1154 1154 } 1155 1155 1156 1156 /* 1157 - * Strip username (and password) from an url and return 1157 + * Strip username (and password) from a URL and return 1158 1158 * it in a newly allocated string. 1159 1159 */ 1160 1160 char *transport_anonymize_url(const char *url)