diff --git a/man/git-changelog.md b/man/git-changelog.md index 3dd6507..46d6dd7 100644 --- a/man/git-changelog.md +++ b/man/git-changelog.md @@ -10,7 +10,7 @@ git-changelog(1) -- Generate a changelog report Generates a changelog from git(1) tags (annotated or lightweight) and commit messages. Existing changelog files with filenames that begin with _Change_ or _History_ will be identified automatically with a case insensitive match pattern and existing content will be appended to the new output generated--this behavior can be disabled by specifying the prune option (-p|--prune-old). The generated file will be opened in **$EDITOR** when set. - If no tags exist, then all commits are output; if tags exist, then only the most-recent commits are output up to the last identified tag. This behavior can be changed by specifing one or both of the range options (-f|--final-tag and -s|--start-tag). + If no tags exist, then all commits are output; if tags exist, then only the most-recent commits are output up to the last identified tag. This behavior can be changed by specifying one or both of the range options (-f|--final-tag and -s|--start-tag). ## OPTIONS diff --git a/man/git-chore.md b/man/git-chore.md index 544c781..eb13fa5 100644 --- a/man/git-chore.md +++ b/man/git-chore.md @@ -30,7 +30,7 @@ git-chore(1) -- Create chore branch ## AUTHOR -Written by Chris Hall <> from bug/feature/refactor comamnds originally written by Jesús Espino <> +Written by Chris Hall <> from bug/feature/refactor commands originally written by Jesús Espino <> ## REPORTING BUGS diff --git a/man/git-guilt.md b/man/git-guilt.md index 2397673..1c22529 100644 --- a/man/git-guilt.md +++ b/man/git-guilt.md @@ -39,7 +39,7 @@ Find blame on unstaged modified files: spacewander ++++ (1) There is only one modified file and it is not staged. The four - plusses means that the file has four lines, all contributed by spacewander. + pluses means that the file has four lines, all contributed by spacewander. Find blame delta between two commits: diff --git a/man/git-ignore.md b/man/git-ignore.md index 5c32582..199a401 100644 --- a/man/git-ignore.md +++ b/man/git-ignore.md @@ -37,11 +37,11 @@ Pattern format as described in the git manual * If the pattern ends with a slash, it is removed for the purpose of the following description, but it would only find a match with a directory. In other words, foo/ will match a directory foo and paths underneath it, but will not match a regular file or a symbolic link foo (this is consistent with the way how pathspec works in general in git). - * If the pattern does not contain a slash /, git treats it as a shell glob pattern and checks for a match against the pathname relative to the location of the .gitignore file (relative to the toplevel of the work tree if not from a .gitignore file). + * If the pattern does not contain a slash /, git treats it as a shell glob pattern and checks for a match against the pathname relative to the location of the .gitignore file (relative to the top level of the work tree if not from a .gitignore file). * Otherwise, git treats the pattern as a shell glob suitable for consumption by fnmatch(3) with the FNM_PATHNAME flag: wildcards in the pattern will not match a / in the pathname. For example, "Documentation/*.html" matches "Documentation/git.html" but not "Documentation/ppc/ppc.html" or "tools/perf/Documentation/perf.html". - * A leading slash matches the beginning of the pathname. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". + * A leading slash matches the beginning of the path name. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". ## EXAMPLES diff --git a/man/git-obliterate.md b/man/git-obliterate.md index c98d73a..af7df3b 100644 --- a/man/git-obliterate.md +++ b/man/git-obliterate.md @@ -8,12 +8,12 @@ git obliterate <files...> [-- <rev-list options...>] ## DESCRIPTION Completely remove some files from the repository, including past commits and tags. -WARNING! This command will rewirte the history similar to `git rebase`(though it affects more). The rewritten history will have different object names for all the objects and will not converge with the original branch. So **avoid using it on commits that you shared**. +WARNING! This command will rewrite the history similar to `git rebase`(though it affects more). The rewritten history will have different object names for all the objects and will not converge with the original branch. So **avoid using it on commits that you shared**. And it will mess up stash, so **don't have stash when you run `git obliterate`**. ## OPTIONS -You can pass rev-list options to indicate the range of commits affected. Those options need to be seperated with '--' before them. Run `git help rev-list` to see the acceptable options. +You can pass rev-list options to indicate the range of commits affected. Those options need to be separated with '--' before them. Run `git help rev-list` to see the acceptable options. ## Examples diff --git a/man/git-pull-request.md b/man/git-pull-request.md index b9b5e92..27e1554 100644 --- a/man/git-pull-request.md +++ b/man/git-pull-request.md @@ -7,7 +7,7 @@ git-pull-request(1) -- Create pull request for GitHub project ## DESCRIPTION -Create pull request for a project on GitHub via commandline. +Create pull request for a project on GitHub via command line. Uses the email from `git config user.email` to open the pull request. diff --git a/man/git-reauthor.md b/man/git-reauthor.md index 00eda78..bd65d14 100644 --- a/man/git-reauthor.md +++ b/man/git-reauthor.md @@ -9,7 +9,7 @@ git-reauthor(1) -- Rewrite history to change author's identity Lets you replace the author and/or committer identities in commits and tags. -The command goes through all existing commits and tags in all local branches to selectively modify the identities present in those objects. All the other informations such as dates, messages,.. are preserved. +The command goes through all existing commits and tags in all local branches to selectively modify the identities present in those objects. All the other information such as dates, messages,.. are preserved. You can rewrite all the identities in the commits and tags objects by using the --all flag, or only replace the identities whose email matches the value of the --old-email option. It is also possible to limit the rewrite to a certain type of identity: the author or the committer identity. By default, both of them are affected. For each of those identities to update, the command will replace the name and/or email with the new correct values as defined via the options. If the new identity name to set is not defined, the current one will be kept (and vice-versa with the email).