diff --git a/man/.gitignore b/man/.gitignore deleted file mode 100644 index 10ef452..0000000 --- a/man/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/git-*.html -/git-*.1 diff --git a/man/git-alias.1 b/man/git-alias.1 new file mode 100644 index 0000000..6d4a300 --- /dev/null +++ b/man/git-alias.1 @@ -0,0 +1,84 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-ALIAS" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-alias\fR \- Define, search and show aliases +. +.SH "SYNOPSIS" +\fBgit\-alias\fR [ ]|[] +. +.SH "DESCRIPTION" +. +.SH "OPTIONS" + +. +.P +The name of the alias to create\. +. +.P + +. +.P +The command for which you are creating an alias\. +. +.P + +. +.P +The pattern used for search aliases\. +. +.SH "EXAMPLES" +Defining a new alias: +. +.IP "" 4 +. +.nf + +$ git alias last "cat\-file commit HEAD" +. +.fi +. +.IP "" 0 +. +.P +Providing only one argument, \fBgit\-alias\fR searchs for aliases matching the given value: +. +.IP "" 4 +. +.nf + +$ git alias ^la +last = cat\-file commit HEAD +. +.fi +. +.IP "" 0 +. +.P +\fBgit\-alias\fR will show all aliases if no argument is given: +. +.IP "" 4 +. +.nf + +$ git alias +s = status +amend = commit \-\-amend +rank = shortlog \-sn \-\-no\-merges +whatis = show \-s \-\-pretty=\'tformat:%h (%s, %ad)\' \-\-date=short +whois = !sh \-c \'git log \-i \-1 \-\-pretty="format:%an <%ae> +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Jonhnny Weslley <\fIjw@jonhnnyweslley\.net\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-alias.html b/man/git-alias.html new file mode 100644 index 0000000..e952085 --- /dev/null +++ b/man/git-alias.html @@ -0,0 +1,141 @@ + + + + + + git-alias(1) - Define, search and show aliases + + + + +
+ + + +
    +
  1. git-alias(1)
  2. +
  3. +
  4. git-alias(1)
  5. +
+ +

NAME

+

+ git-alias - Define, search and show aliases +

+ +

SYNOPSIS

+ +

git-alias [<alias-name> <command>]|[<search-term>]

+ +

DESCRIPTION

+ +

OPTIONS

+ +

<alias-name>

+ +

The name of the alias to create.

+ +

<command>

+ +

The command for which you are creating an alias.

+ +

<search-term>

+ +

The pattern used for search aliases.

+ +

EXAMPLES

+ +

Defining a new alias:

+ +
$ git alias last "cat-file commit HEAD"
+
+ +

Providing only one argument, git-alias searchs for aliases matching the given value:

+ +
$ git alias ^la
+last = cat-file commit HEAD
+
+ +

git-alias will show all aliases if no argument is given:

+ +
$ git alias
+s = status
+amend = commit --amend
+rank = shortlog -sn --no-merges
+whatis = show -s --pretty='tformat:%h (%s, %ad)' --date=short
+whois = !sh -c 'git log -i -1 --pretty="format:%an <%ae>
+
+ +

AUTHOR

+ +

Written by Jonhnny Weslley <jw@jonhnnyweslley.net>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-alias(1)
  5. +
+ +
+ + diff --git a/man/git-archive-file.1 b/man/git-archive-file.1 new file mode 100644 index 0000000..95775ca --- /dev/null +++ b/man/git-archive-file.1 @@ -0,0 +1,37 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-ARCHIVE\-FILE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-archive\-file\fR \- Export the current HEAD of the git repository to a archive +. +.SH "SYNOPSIS" +\fBgit\-archive\-file\fR +. +.SH "DESCRIPTION" +Export the current HEAD of the repository into a archive with a identifiable and unique name\. +. +.SH "OPTIONS" +This command does not take any options\. +. +.SH "EXAMPLES" +Archive naming conventions: +. +.P +On any branch: \fBgit\-extras\.1\.7\.0\-110\-gafefba7\.branch\-name\.zip\fR +. +.P +On master branch: \fBgit\-extras\.1\.7\.0\-110\-gafefba7\.zip\fR +. +.P +On a detached HEAD (e\.g\. a tag): \fBgit\-extras\.1\.7\.0\.zip\fR +. +.SH "AUTHOR" +Written by Philipp Klose <\fIme@thehippo\.de\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-archive-file.html b/man/git-archive-file.html new file mode 100644 index 0000000..89d3f0b --- /dev/null +++ b/man/git-archive-file.html @@ -0,0 +1,120 @@ + + + + + + git-archive-file(1) - Export the current HEAD of the git repository to a archive + + + + +
+ + + +
    +
  1. git-archive-file(1)
  2. +
  3. +
  4. git-archive-file(1)
  5. +
+ +

NAME

+

+ git-archive-file - Export the current HEAD of the git repository to a archive +

+ +

SYNOPSIS

+ +

git-archive-file

+ +

DESCRIPTION

+ +

Export the current HEAD of the repository into a archive with a identifiable and unique name.

+ +

OPTIONS

+ +

This command does not take any options.

+ +

EXAMPLES

+ +

Archive naming conventions:

+ +

On any branch: git-extras.1.7.0-110-gafefba7.branch-name.zip

+ +

On master branch: git-extras.1.7.0-110-gafefba7.zip

+ +

On a detached HEAD (e.g. a tag): git-extras.1.7.0.zip

+ +

AUTHOR

+ +

Written by Philipp Klose <me@thehippo.de>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-archive-file(1)
  5. +
+ +
+ + diff --git a/man/git-back.1 b/man/git-back.1 new file mode 100644 index 0000000..93cea10 --- /dev/null +++ b/man/git-back.1 @@ -0,0 +1,54 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-BACK" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-back\fR \- Undo and Stage latest commits +. +.SH "SYNOPSIS" +\fBgit\-back\fR [] +. +.SH "DESCRIPTION" +Removes the latest commits, and add their changes to your staging area\. +. +.SH "OPTIONS" + +. +.P +Number of commits to remove\. Defaults to \fI1\fR, thus remove the latest commit\. +. +.SH "EXAMPLES" +Removes the latest commit\. +. +.IP "" 4 +. +.nf + +$ git back +. +.fi +. +.IP "" 0 +. +.P +Remove the latest 3 commits: +. +.IP "" 4 +. +.nf + +$ git back 3 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Kenneth Reitz <\fIme@kennethreitz\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-back.html b/man/git-back.html new file mode 100644 index 0000000..b592ec7 --- /dev/null +++ b/man/git-back.html @@ -0,0 +1,124 @@ + + + + + + git-back(1) - Undo and Stage latest commits + + + + +
+ + + +
    +
  1. git-back(1)
  2. +
  3. +
  4. git-back(1)
  5. +
+ +

NAME

+

+ git-back - Undo and Stage latest commits +

+ +

SYNOPSIS

+ +

git-back [<commitcount>]

+ +

DESCRIPTION

+ +

Removes the latest commits, and add their changes to your staging area.

+ +

OPTIONS

+ +

<commitcount>

+ +

Number of commits to remove. Defaults to 1, thus remove the latest commit.

+ +

EXAMPLES

+ +

Removes the latest commit.

+ +
$ git back
+
+ +

Remove the latest 3 commits:

+ +
$ git back 3
+
+ +

AUTHOR

+ +

Written by Kenneth Reitz <me@kennethreitz.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-back(1)
  5. +
+ +
+ + diff --git a/man/git-bug.1 b/man/git-bug.1 new file mode 100644 index 0000000..0e7a3d1 --- /dev/null +++ b/man/git-bug.1 @@ -0,0 +1,47 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-BUG" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-bug\fR \- Create bug branch +. +.SH "SYNOPSIS" +\fBgit\-bug\fR [finish] +. +.SH "DESCRIPTION" +Create the given bug branch +. +.SH "OPTIONS" + +. +.P +Merge and delete the bug branch\. +. +.P + +. +.P +The name of the bug branch\. +. +.SH "EXAMPLES" +. +.nf + +$ git bug bug\-123456 +\.\.\. +$ git commit \-m "Some changes" +\.\.\. +$ git checkout master +$ git bug finish bug\-123456 +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-bug.html b/man/git-bug.html new file mode 100644 index 0000000..0be9f22 --- /dev/null +++ b/man/git-bug.html @@ -0,0 +1,126 @@ + + + + + + git-bug(1) - Create bug branch + + + + +
+ + + +
    +
  1. git-bug(1)
  2. +
  3. +
  4. git-bug(1)
  5. +
+ +

NAME

+

+ git-bug - Create bug branch +

+ +

SYNOPSIS

+ +

git-bug [finish] <name>

+ +

DESCRIPTION

+ +

Create the given bug branch

+ +

OPTIONS

+ +

<finish>

+ +

Merge and delete the bug branch.

+ +

<name>

+ +

The name of the bug branch.

+ +

EXAMPLES

+ +
$ git bug bug-123456
+...
+$ git commit -m "Some changes"
+...
+$ git checkout master
+$ git bug finish bug-123456
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-bug(1)
  5. +
+ +
+ + diff --git a/man/git-changelog.1 b/man/git-changelog.1 new file mode 100644 index 0000000..6c59886 --- /dev/null +++ b/man/git-changelog.1 @@ -0,0 +1,83 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-CHANGELOG" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-changelog\fR \- Generate the changelog report +. +.SH "SYNOPSIS" +\fBgit\-changelog\fR [\-l, \-\-list] +. +.SH "DESCRIPTION" +Populates the file named matching \fIchange|history \-i\fR with the commits since the previous tag or since the project began when no tags are present\. Opens the changelog in \fB$EDITOR\fR when set\. +. +.SH "OPTIONS" +\-l, \-\-list +. +.P +Show commit logs from the current version\. +. +.P +\-\-no\-merges +. +.P +Filters out merge commits (commits with more than 1 parent) from generated changelog\. +. +.SH "EXAMPLES" +. +.IP "\(bu" 4 +Updating changelog file: +. +.IP +$ git changelog +. +.IP "\(bu" 4 +Listing commits from the current version: +. +.IP +$ git changelog \-\-list +. +.IP "\(bu" 4 +Docs for git\-ignore\. Closes #3 +. +.IP "\(bu" 4 +Merge branch \'ignore\' +. +.IP "\(bu" 4 +Added git\-ignore +. +.IP "\(bu" 4 +Fixed in docs +. +.IP "\(bu" 4 +Install docs +. +.IP "\(bu" 4 +Merge branch \'release\' +. +.IP "\(bu" 4 +Added git\-release +. +.IP "\(bu" 4 +Passing args to git shortlog +. +.IP "\(bu" 4 +Added \-\-all support to git\-count +. +.IP "\(bu" 4 +Initial commit +. +.IP "" 0 + +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-changelog.html b/man/git-changelog.html new file mode 100644 index 0000000..60f9f53 --- /dev/null +++ b/man/git-changelog.html @@ -0,0 +1,142 @@ + + + + + + git-changelog(1) - Generate the changelog report + + + + +
+ + + +
    +
  1. git-changelog(1)
  2. +
  3. +
  4. git-changelog(1)
  5. +
+ +

NAME

+

+ git-changelog - Generate the changelog report +

+ +

SYNOPSIS

+ +

git-changelog [-l, --list]

+ +

DESCRIPTION

+ +

Populates the file named matching change|history -i with the commits since the previous tag or since the project began when no tags are present. Opens the changelog in $EDITOR when set.

+ +

OPTIONS

+ +

-l, --list

+ +

Show commit logs from the current version.

+ +

--no-merges

+ +

Filters out merge commits (commits with more than 1 parent) from generated changelog.

+ +

EXAMPLES

+ +
    +
  • Updating changelog file:

    + +

    $ git changelog

  • +
  • Listing commits from the current version:

    + +

    $ git changelog --list

    + +
      +
    • Docs for git-ignore. Closes #3
    • +
    • Merge branch 'ignore'
    • +
    • Added git-ignore
    • +
    • Fixed <tag> in docs
    • +
    • Install docs
    • +
    • Merge branch 'release'
    • +
    • Added git-release
    • +
    • Passing args to git shortlog
    • +
    • Added --all support to git-count
    • +
    • Initial commit
    • +
    +
  • +
+ + +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-changelog(1)
  5. +
+ +
+ + diff --git a/man/git-commits-since.1 b/man/git-commits-since.1 new file mode 100644 index 0000000..d332be8 --- /dev/null +++ b/man/git-commits-since.1 @@ -0,0 +1,57 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-COMMITS\-SINCE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-commits\-since\fR \- Show commit logs since some date +. +.SH "SYNOPSIS" +\fBgit\-commits\-since\fR [] +. +.SH "DESCRIPTION" +List of commits since the given \fIdate\fR\. +. +.SH "OPTIONS" + +. +.P +Show commits more recent than \fIdate\fR\. By default, the command shows the commit logs since "last week"\. +. +.SH "EXAMPLES" +It is really flexible and these are only 3 of the options, go ahead give it a try: +. +.IP "" 4 +. +.nf + +$ git commits\-since yesterday +\.\.\. commits since yesterday +nickl\- \- Merge branch upstream master\. +nickl\- \- Rebase bolshakov with master +TJ Holowaychuk \- Merge pull request #128 from nickl\-/git\-extras\-html\-hyperlinks +TJ Holowaychuk \- Merge pull request #129 from nickl\-/develop +nickl\- \- Fix #127 git\-ignore won\'t add duplicates\. + +$ git commits\-since 3 o clock pm +\.\.\. commits since 3 o clock pm +nickl\- \- Merge branch upstream master\. + +$ git commits\-since 2 hour ago +\.\.\. commits since 2 hour ago +nickl\- \- Merge branch upstream master\. +TJ Holowaychuk \- Merge pull request #128 from nickl\-/git\-extras\-html\-hyperlinks +TJ Holowaychuk \- Merge pull request #129 from nickl\-/develop +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-commits-since.html b/man/git-commits-since.html new file mode 100644 index 0000000..82ab0cc --- /dev/null +++ b/man/git-commits-since.html @@ -0,0 +1,135 @@ + + + + + + git-commits-since(1) - Show commit logs since some date + + + + +
+ + + +
    +
  1. git-commits-since(1)
  2. +
  3. +
  4. git-commits-since(1)
  5. +
+ +

NAME

+

+ git-commits-since - Show commit logs since some date +

+ +

SYNOPSIS

+ +

git-commits-since [<date>]

+ +

DESCRIPTION

+ +

List of commits since the given date.

+ +

OPTIONS

+ +

<date>

+ +

Show commits more recent than date. By default, the command shows the commit logs since "last week".

+ +

EXAMPLES

+ +

It is really flexible and these are only 3 of the options, go ahead give it a try:

+ +
$ git commits-since yesterday
+... commits since yesterday
+nickl- - Merge branch upstream master.
+nickl- - Rebase bolshakov with master
+TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
+TJ Holowaychuk - Merge pull request #129 from nickl-/develop
+nickl- - Fix #127 git-ignore won't add duplicates.
+
+$ git commits-since 3 o clock pm
+... commits since 3 o clock pm
+nickl- - Merge branch upstream master.
+
+$ git commits-since 2 hour ago
+... commits since 2 hour ago
+nickl- - Merge branch upstream master.
+TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
+TJ Holowaychuk - Merge pull request #129 from nickl-/develop
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-commits-since(1)
  5. +
+ +
+ + diff --git a/man/git-contrib.1 b/man/git-contrib.1 new file mode 100644 index 0000000..b99d1f2 --- /dev/null +++ b/man/git-contrib.1 @@ -0,0 +1,43 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-CONTRIB" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-contrib\fR \- Show user\'s contributions +. +.SH "SYNOPSIS" +\fBgit\-contrib\fR +. +.SH "DESCRIPTION" +Output a user\'s contributions to a project, based on the author name\. +. +.SH "OPTIONS" + +. +.P +The name of the user who owns the contributions\. +. +.SH "EXAMPLES" +. +.nf + +$ git contrib visionmedia +visionmedia (18): + Export STATUS_CODES + Replaced several Array\.prototype\.slice\.call() calls with Array\.prototype\.unshift\.call() + Moved help msg to node\-repl + Added multiple arg support for sys\.puts(), print(), etc\. + Fix stack output on socket error + \.\.\. +. +.fi +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-contrib.html b/man/git-contrib.html new file mode 100644 index 0000000..e1f1aa6 --- /dev/null +++ b/man/git-contrib.html @@ -0,0 +1,124 @@ + + + + + + git-contrib(1) - Show user's contributions + + + + +
+ + + +
    +
  1. git-contrib(1)
  2. +
  3. +
  4. git-contrib(1)
  5. +
+ +

NAME

+

+ git-contrib - Show user's contributions +

+ +

SYNOPSIS

+ +

git-contrib <username>

+ +

DESCRIPTION

+ +

Output a user's contributions to a project, based on the author name.

+ +

OPTIONS

+ +

<username>

+ +

The name of the user who owns the contributions.

+ +

EXAMPLES

+ +
$ git contrib visionmedia
+visionmedia (18):
+  Export STATUS_CODES
+  Replaced several Array.prototype.slice.call() calls with Array.prototype.unshift.call()
+  Moved help msg to node-repl
+  Added multiple arg support for sys.puts(), print(), etc.
+  Fix stack output on socket error
+  ...
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-contrib(1)
  5. +
+ +
+ + diff --git a/man/git-count.1 b/man/git-count.1 new file mode 100644 index 0000000..2502ce8 --- /dev/null +++ b/man/git-count.1 @@ -0,0 +1,77 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-COUNT" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-count\fR \- Show commit count +. +.SH "SYNOPSIS" +\fBgit\-count\fR [\-\-all] +. +.SH "DESCRIPTION" +Show commit count\. +. +.SH "OPTIONS" +\-\-all +. +.P +Show commit count details\. +. +.SH "EXAMPLES" +Output commit total: +. +.IP "" 4 +. +.nf + +$ git count + +total 1844 +. +.fi +. +.IP "" 0 +. +.P +Output verbose commit count details: +. +.IP "" 4 +. +.nf + +$ git count \-\-all + + visionmedia (1285) + Tj Holowaychuk (430) + Aaron Heckmann (48) + csausdev (34) + ciaranj (26) + Guillermo Rauch (6) + Brian McKinney (2) + Nick Poulden (2) + Benny Wong (2) + Justin Lilly (1) + isaacs (1) + Adam Sanderson (1) + Viktor Kelemen (1) + Gregory Ritter (1) + Greg Ritter (1) + ewoudj (1) + James Herdman (1) + Matt Colyer (1) + + total 1844 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-count.html b/man/git-count.html new file mode 100644 index 0000000..204b992 --- /dev/null +++ b/man/git-count.html @@ -0,0 +1,147 @@ + + + + + + git-count(1) - Show commit count + + + + +
+ + + +
    +
  1. git-count(1)
  2. +
  3. +
  4. git-count(1)
  5. +
+ +

NAME

+

+ git-count - Show commit count +

+ +

SYNOPSIS

+ +

git-count [--all]

+ +

DESCRIPTION

+ +

Show commit count.

+ +

OPTIONS

+ +

--all

+ +

Show commit count details.

+ +

EXAMPLES

+ +

Output commit total:

+ +
$ git count
+
+total 1844
+
+ +

Output verbose commit count details:

+ +
$ git count --all
+
+  visionmedia (1285)
+  Tj Holowaychuk (430)
+  Aaron Heckmann (48)
+  csausdev (34)
+  ciaranj (26)
+  Guillermo Rauch (6)
+  Brian McKinney (2)
+  Nick Poulden (2)
+  Benny Wong (2)
+  Justin Lilly (1)
+  isaacs (1)
+  Adam Sanderson (1)
+  Viktor Kelemen (1)
+  Gregory Ritter (1)
+  Greg Ritter (1)
+  ewoudj (1)
+  James Herdman (1)
+  Matt Colyer (1)
+
+  total 1844
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-count(1)
  5. +
+ +
+ + diff --git a/man/git-create-branch.1 b/man/git-create-branch.1 new file mode 100644 index 0000000..e80a5bb --- /dev/null +++ b/man/git-create-branch.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-CREATE\-BRANCH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-create\-branch\fR \- Create branches +. +.SH "SYNOPSIS" +\fBgit\-create\-branch\fR +. +.SH "DESCRIPTION" +Creates local and remote branch named \. +. +.SH "OPTIONS" + +. +.P +The name of the branch to create\. +. +.SH "EXAMPLES" +. +.nf + +$ git create\-branch integration +. +.fi +. +.SH "AUTHOR" +Written by Jonhnny Weslley <\fIjw@jonhnnyweslley\.net\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-create-branch.html b/man/git-create-branch.html new file mode 100644 index 0000000..dd756a2 --- /dev/null +++ b/man/git-create-branch.html @@ -0,0 +1,117 @@ + + + + + + git-create-branch(1) - Create branches + + + + +
+ + + +
    +
  1. git-create-branch(1)
  2. +
  3. +
  4. git-create-branch(1)
  5. +
+ +

NAME

+

+ git-create-branch - Create branches +

+ +

SYNOPSIS

+ +

git-create-branch <branchname>

+ +

DESCRIPTION

+ +

Creates local and remote branch named <branchname>.

+ +

OPTIONS

+ +

<branchname>

+ +

The name of the branch to create.

+ +

EXAMPLES

+ +
$ git create-branch integration
+
+ +

AUTHOR

+ +

Written by Jonhnny Weslley <jw@jonhnnyweslley.net>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-create-branch(1)
  5. +
+ +
+ + diff --git a/man/git-delete-branch.1 b/man/git-delete-branch.1 new file mode 100644 index 0000000..1fa444a --- /dev/null +++ b/man/git-delete-branch.1 @@ -0,0 +1,37 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-DELETE\-BRANCH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-delete\-branch\fR \- Delete branches +. +.SH "SYNOPSIS" +\fBgit\-delete\-branch\fR +. +.SH "DESCRIPTION" +Deletes local and remote branch named \. Note that local deletion fails if the branch is checked out\. +. +.SH "OPTIONS" + +. +.P +The name of the branch to delete\. If multiple branches are provided, then they will all be deleted\. +. +.SH "EXAMPLES" +. +.nf + +$ git delete\-branch integration +$ git delete\-branch integration bug/1234 +. +.fi +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-delete-branch.html b/man/git-delete-branch.html new file mode 100644 index 0000000..0205da7 --- /dev/null +++ b/man/git-delete-branch.html @@ -0,0 +1,120 @@ + + + + + + git-delete-branch(1) - Delete branches + + + + +
+ + + +
    +
  1. git-delete-branch(1)
  2. +
  3. +
  4. git-delete-branch(1)
  5. +
+ +

NAME

+

+ git-delete-branch - Delete branches +

+ +

SYNOPSIS

+ +

git-delete-branch <branchname>

+ +

DESCRIPTION

+ +

Deletes local and remote branch named <branchname>. + Note that local deletion fails if the branch is checked out.

+ +

OPTIONS

+ +

<branchname>

+ +

The name of the branch to delete. + If multiple branches are provided, then they will all be deleted.

+ +

EXAMPLES

+ +
$ git delete-branch integration
+$ git delete-branch integration bug/1234
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-delete-branch(1)
  5. +
+ +
+ + diff --git a/man/git-delete-merged-branches.1 b/man/git-delete-merged-branches.1 new file mode 100644 index 0000000..179297a --- /dev/null +++ b/man/git-delete-merged-branches.1 @@ -0,0 +1,30 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-DELETE\-MERGED\-BRANCHES" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-delete\-merged\-branches\fR \- Delete merged branches +. +.SH "SYNOPSIS" +\fBgit\-delete\-merged\-branches\fR +. +.SH "DESCRIPTION" +Deletes all branches merged into current HEAD\. Does not delete \fImaster\fR, even if run from a branch that is a descendant of \fImaster\fR\. +. +.SH "EXAMPLES" +. +.nf + +$ git delete\-merged\-branches +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-delete-merged-branches.html b/man/git-delete-merged-branches.html new file mode 100644 index 0000000..eeccaee --- /dev/null +++ b/man/git-delete-merged-branches.html @@ -0,0 +1,111 @@ + + + + + + git-delete-merged-branches(1) - Delete merged branches + + + + +
+ + + +
    +
  1. git-delete-merged-branches(1)
  2. +
  3. +
  4. git-delete-merged-branches(1)
  5. +
+ +

NAME

+

+ git-delete-merged-branches - Delete merged branches +

+ +

SYNOPSIS

+ +

git-delete-merged-branches

+ +

DESCRIPTION

+ +

Deletes all branches merged into current HEAD. Does not delete master, even if run from a branch that is + a descendant of master.

+ +

EXAMPLES

+ +
$ git delete-merged-branches
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-delete-merged-branches(1)
  5. +
+ +
+ + diff --git a/man/git-delete-submodule.1 b/man/git-delete-submodule.1 new file mode 100644 index 0000000..b9fc875 --- /dev/null +++ b/man/git-delete-submodule.1 @@ -0,0 +1,35 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-DELETE\-SUBMODULE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-delete\-submodule\fR \- Delete submodules +. +.SH "SYNOPSIS" +\fBgit\-delete\-submodule\fR +. +.SH "DESCRIPTION" +. +.SH "OPTIONS" + +. +.P +The path of the submodule to delete\. +. +.SH "EXAMPLES" +. +.nf + +$ git delete\-submodule lib/foo +. +.fi +. +.SH "AUTHOR" +Written by Jonhnny Weslley <\fIjw@jonhnnyweslley\.net\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-delete-submodule.html b/man/git-delete-submodule.html new file mode 100644 index 0000000..4f379fe --- /dev/null +++ b/man/git-delete-submodule.html @@ -0,0 +1,115 @@ + + + + + + git-delete-submodule(1) - Delete submodules + + + + +
+ + + +
    +
  1. git-delete-submodule(1)
  2. +
  3. +
  4. git-delete-submodule(1)
  5. +
+ +

NAME

+

+ git-delete-submodule - Delete submodules +

+ +

SYNOPSIS

+ +

git-delete-submodule <path>

+ +

DESCRIPTION

+ +

OPTIONS

+ +

<path>

+ +

The path of the submodule to delete.

+ +

EXAMPLES

+ +
$ git delete-submodule lib/foo
+
+ +

AUTHOR

+ +

Written by Jonhnny Weslley <jw@jonhnnyweslley.net>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-delete-submodule(1)
  5. +
+ +
+ + diff --git a/man/git-delete-tag.1 b/man/git-delete-tag.1 new file mode 100644 index 0000000..347b43b --- /dev/null +++ b/man/git-delete-tag.1 @@ -0,0 +1,37 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-DELETE\-TAG" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-delete\-tag\fR \- Delete tags +. +.SH "SYNOPSIS" +\fBgit\-delete\-tag\fR +. +.SH "DESCRIPTION" +Deletes local and remote tag named \. +. +.SH "OPTIONS" + +. +.P +The name of the tag to delete\. If multiple tags are provided, then they will all be deleted\. +. +.SH "EXAMPLES" +. +.nf + +$ git delete\-tag 0\.0\.1 +$ git delete\-tag 0\.0\.1 0\.0\.2 +. +.fi +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-delete-tag.html b/man/git-delete-tag.html new file mode 100644 index 0000000..c56a5ad --- /dev/null +++ b/man/git-delete-tag.html @@ -0,0 +1,119 @@ + + + + + + git-delete-tag(1) - Delete tags + + + + +
+ + + +
    +
  1. git-delete-tag(1)
  2. +
  3. +
  4. git-delete-tag(1)
  5. +
+ +

NAME

+

+ git-delete-tag - Delete tags +

+ +

SYNOPSIS

+ +

git-delete-tag <tagname>

+ +

DESCRIPTION

+ +

Deletes local and remote tag named <tagname>.

+ +

OPTIONS

+ +

<tagname>

+ +

The name of the tag to delete. + If multiple tags are provided, then they will all be deleted.

+ +

EXAMPLES

+ +
$ git delete-tag 0.0.1
+$ git delete-tag 0.0.1 0.0.2
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-delete-tag(1)
  5. +
+ +
+ + diff --git a/man/git-effort.1 b/man/git-effort.1 new file mode 100644 index 0000000..e45f43d --- /dev/null +++ b/man/git-effort.1 @@ -0,0 +1,68 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-EFFORT" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-effort\fR \- Show effort statistics on file(s) +. +.SH "SYNOPSIS" +\fBgit\-effort\fR [\-\-above ] [] +. +.SH "DESCRIPTION" +Shows effort statistics about files in the repository\. +. +.P +Display includes: +. +.br +\- Commits: number of commits per file \- highlighting files with most activity\. +. +.br +\- Active days: total number of days which contributed modifications to this file\. +. +.SH "OPTIONS" +\-\-above +. +.P +Ignore files with commits <= a value\. +. +.P + +. +.P +Only display effort statistics for a specific filename\. +. +.SH "EXAMPLES" +Displays "effort" statistics: +. +.IP "" 4 +. +.nf + +$ git effort \-\-above 5 + + file commits active days + + git\-extras 26 18 + git\-release 13 13 + git\-effort 13 2 + git\-ignore 11 7 + git\-changelog 11 8 + git\-graft 9 6 + git\-summary 8 6 + git\-delete\-branch 8 6 + git\-repl 7 5 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Leila Muhtasib <\fImuhtasib@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-effort.html b/man/git-effort.html new file mode 100644 index 0000000..1ed4dd4 --- /dev/null +++ b/man/git-effort.html @@ -0,0 +1,139 @@ + + + + + + git-effort(1) - Show effort statistics on file(s) + + + + +
+ + + +
    +
  1. git-effort(1)
  2. +
  3. +
  4. git-effort(1)
  5. +
+ +

NAME

+

+ git-effort - Show effort statistics on file(s) +

+ +

SYNOPSIS

+ +

git-effort [--above <value>] [<filename>]

+ +

DESCRIPTION

+ +

Shows effort statistics about files in the repository.

+ +

Display includes:
+ - Commits: number of commits per file - highlighting files with most activity.
+ - Active days: total number of days which contributed modifications to this file.

+ +

OPTIONS

+ +

--above <value>

+ +

Ignore files with commits <= a value.

+ +

<filename>

+ +

Only display effort statistics for a specific filename.

+ +

EXAMPLES

+ +

Displays "effort" statistics:

+ +
$ git effort --above 5
+
+  file                                          commits    active days
+
+  git-extras                                    26         18
+  git-release                                   13         13
+  git-effort                                    13         2
+  git-ignore                                    11         7
+  git-changelog                                 11         8
+  git-graft                                     9          6
+  git-summary                                   8          6
+  git-delete-branch                             8          6
+  git-repl                                      7          5
+
+ +

AUTHOR

+ +

Written by Leila Muhtasib <muhtasib@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-effort(1)
  5. +
+ +
+ + diff --git a/man/git-extras.1 b/man/git-extras.1 new file mode 100644 index 0000000..2c45ae7 --- /dev/null +++ b/man/git-extras.1 @@ -0,0 +1,158 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-EXTRAS" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-extras\fR \- Awesome GIT utilities +. +.SH "SYNOPSIS" +\fBgit\-extras\fR [\-v,\-\-version] [\-h,\-\-help] [update] +. +.SH "OPTIONS" +\-v, \-\-version +. +.P +Show git\-extras version number\. +. +.P +\-h, \-\-help +. +.P +Show this help\. This option can also be used for any of the extras commands\. +. +.P +update +. +.P +Self update\. +. +.SH "COMMANDS" +. +.IP "\(bu" 4 +\fBgit\-alias(1)\fR Define, search and show aliases +. +.IP "\(bu" 4 +\fBgit\-archive\-file(1)\fR Export the current HEAD of the git repository to a archive +. +.IP "\(bu" 4 +\fBgit\-back(1)\fR Undo and Stage latest commits +. +.IP "\(bu" 4 +\fBgit\-bug(1)\fR Create bug branch +. +.IP "\(bu" 4 +\fBgit\-changelog(1)\fR Generate the changelog report +. +.IP "\(bu" 4 +\fBgit\-commits\-since(1)\fR Show commit logs since some date +. +.IP "\(bu" 4 +\fBgit\-contrib(1)\fR Show user\'s contributions +. +.IP "\(bu" 4 +\fBgit\-count(1)\fR Show commit count +. +.IP "\(bu" 4 +\fBgit\-create\-branch(1)\fR Create branches +. +.IP "\(bu" 4 +\fBgit\-delete\-branch(1)\fR Delete branches +. +.IP "\(bu" 4 +\fBgit\-delete\-merged\-branches(1)\fR Delete merged branches +. +.IP "\(bu" 4 +\fBgit\-delete\-submodule(1)\fR Delete submodules +. +.IP "\(bu" 4 +\fBgit\-delete\-tag(1)\fR Delete tags +. +.IP "\(bu" 4 +\fBgit\-effort(1)\fR Show effort statistics on file(s) +. +.IP "\(bu" 4 +\fBgit\-feature(1)\fR Create feature branch +. +.IP "\(bu" 4 +\fBgit\-fork(1)\fR Fork a repo on github +. +.IP "\(bu" 4 +\fBgit\-fresh\-branch(1)\fR Create fresh branches +. +.IP "\(bu" 4 +\fBgit\-gh\-pages(1)\fR Create the GitHub Pages branch +. +.IP "\(bu" 4 +\fBgit\-graft(1)\fR Merge and destroy a given branch +. +.IP "\(bu" 4 +\fBgit\-ignore(1)\fR Add \.gitignore patterns +. +.IP "\(bu" 4 +\fBgit\-info(1)\fR Returns information on current repository +. +.IP "\(bu" 4 +\fBgit\-local\-commits(1)\fR List local commits +. +.IP "\(bu" 4 +\fBgit\-locked(1)\fR ls files that have been locked +. +.IP "\(bu" 4 +\fBgit\-lock(1)\fR Lock a file excluded from version control +. +.IP "\(bu" 4 +\fBgit\-missing(1)\fR Show commits missing from another branch +. +.IP "\(bu" 4 +\fBgit\-pr(1)\fR Checks out a pull request locally +. +.IP "\(bu" 4 +\fBgit\-rebase\-patch(1)\fR Rebases a patch +. +.IP "\(bu" 4 +\fBgit\-refactor(1)\fR Create refactor branch +. +.IP "\(bu" 4 +\fBgit\-release(1)\fR Commit, tag and push changes to the repository +. +.IP "\(bu" 4 +\fBgit\-rename\-tag(1)\fR Rename a tag +. +.IP "\(bu" 4 +\fBgit\-repl(1)\fR git read\-eval\-print\-loop +. +.IP "\(bu" 4 +\fBgit\-reset\-file(1)\fR Reset one file +. +.IP "\(bu" 4 +\fBgit\-setup(1)\fR Set up a git repository +. +.IP "\(bu" 4 +\fBgit\-show\-tree(1)\fR show branch tree of commit history +. +.IP "\(bu" 4 +\fBgit\-squash(1)\fR Import changes from a branch +. +.IP "\(bu" 4 +\fBgit\-summary(1)\fR Show repository summary +. +.IP "\(bu" 4 +\fBgit\-touch(1)\fR Touch and add file to the index +. +.IP "\(bu" 4 +\fBgit\-undo(1)\fR Remove latest commits +. +.IP "\(bu" 4 +\fBgit\-unlock(1)\fR Unlock a file excluded from version control +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-extras.html b/man/git-extras.html new file mode 100644 index 0000000..df69a66 --- /dev/null +++ b/man/git-extras.html @@ -0,0 +1,160 @@ + + + + + + git-extras(1) - Awesome GIT utilities + + + + +
+ + + +
    +
  1. git-extras(1)
  2. +
  3. +
  4. git-extras(1)
  5. +
+ +

NAME

+

+ git-extras - Awesome GIT utilities +

+ +

SYNOPSIS

+ +

git-extras [-v,--version] [-h,--help] [update]

+ +

OPTIONS

+ +

-v, --version

+ +

Show git-extras version number.

+ +

-h, --help

+ +

Show this help. This option can also be used for any of the extras commands.

+ +

update

+ +

Self update.

+ +

COMMANDS

+ + + + +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-extras(1)
  5. +
+ +
+ + diff --git a/man/git-feature.1 b/man/git-feature.1 new file mode 100644 index 0000000..28245bc --- /dev/null +++ b/man/git-feature.1 @@ -0,0 +1,47 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-FEATURE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-feature\fR \- Create feature branch +. +.SH "SYNOPSIS" +\fBgit\-feature\fR [finish] +. +.SH "DESCRIPTION" +Create the given feature branch +. +.SH "OPTIONS" + +. +.P +Merge and delete the feature branch\. +. +.P + +. +.P +The name of the feature branch\. +. +.SH "EXAMPLES" +. +.nf + +$ git feature dependencies +\.\.\. +$ git commit \-m "Some changes" +\.\.\. +$ git checkout master +$ git feature finish dependencies +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-feature.html b/man/git-feature.html new file mode 100644 index 0000000..4a5cc87 --- /dev/null +++ b/man/git-feature.html @@ -0,0 +1,126 @@ + + + + + + git-feature(1) - Create feature branch + + + + +
+ + + +
    +
  1. git-feature(1)
  2. +
  3. +
  4. git-feature(1)
  5. +
+ +

NAME

+

+ git-feature - Create feature branch +

+ +

SYNOPSIS

+ +

git-feature [finish] <name>

+ +

DESCRIPTION

+ +

Create the given feature branch

+ +

OPTIONS

+ +

<finish>

+ +

Merge and delete the feature branch.

+ +

<name>

+ +

The name of the feature branch.

+ +

EXAMPLES

+ +
$ git feature dependencies
+...
+$ git commit -m "Some changes"
+...
+$ git checkout master
+$ git feature finish dependencies
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-feature(1)
  5. +
+ +
+ + diff --git a/man/git-fork.1 b/man/git-fork.1 new file mode 100644 index 0000000..efb1c09 --- /dev/null +++ b/man/git-fork.1 @@ -0,0 +1,79 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-FORK" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-fork\fR \- Fork a repo on github +. +.SH "SYNOPSIS" +\fBgit\-fork\fR [] +. +.SH "DESCRIPTION" +Fork the given github repo\. Like clone but forks first\. +. +.IP "1." 4 +forks the repo on github +. +.IP "2." 4 +clones the repo into the current dir +. +.IP "3." 4 +adds the original repo as a remote +. +.IP "" 0 +. +.SH "EXAMPLE" +Fork expect\.js: +. +.IP "" 4 +. +.nf + +$ git fork https://github\.com/LearnBoost/expect\.js +. +.fi +. +.IP "" 0 +. +.P +or just: +. +.IP "" 4 +. +.nf + +$ git fork LearnBoost/expect\.js +. +.fi +. +.IP "" 0 +. +.P +Then: +. +.IP "" 4 +. +.nf + +$ \.\.\.\.\. + +$ cd expect\.js && git remote \-v + + origin git@github\.com:/expect\.js (fetch) + origin git@github\.com:/expect\.js (push) + original git@github\.com:LearnBoost/expect\.js (fetch) + original git@github\.com:LearnBoost/expect\.js (push) +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Andrew Griffiths <\fImail@andrewgriffithsonline\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-fork.html b/man/git-fork.html new file mode 100644 index 0000000..58ba34e --- /dev/null +++ b/man/git-fork.html @@ -0,0 +1,136 @@ + + + + + + git-fork(1) - Fork a repo on github + + + + +
+ + + +
    +
  1. git-fork(1)
  2. +
  3. +
  4. git-fork(1)
  5. +
+ +

NAME

+

+ git-fork - Fork a repo on github +

+ +

SYNOPSIS

+ +

git-fork [<github-repo-url>]

+ +

DESCRIPTION

+ +

Fork the given github repo. Like clone but forks first.

+ +
    +
  1. forks the repo on github
  2. +
  3. clones the repo into the current dir
  4. +
  5. adds the original repo as a remote
  6. +
+ + +

EXAMPLE

+ +

Fork expect.js:

+ +
$ git fork https://github.com/LearnBoost/expect.js
+
+ +

or just:

+ +
$ git fork LearnBoost/expect.js
+
+ +

Then:

+ +
$ ..<forks into your github profile and clones repo locally to expect.js dir>...
+
+$ cd expect.js && git remote -v
+
+  origin          git@github.com:<user>/expect.js (fetch)
+  origin          git@github.com:<user>/expect.js (push)
+  original        git@github.com:LearnBoost/expect.js (fetch)
+  original        git@github.com:LearnBoost/expect.js (push)
+
+ +

AUTHOR

+ +

Written by Andrew Griffiths <mail@andrewgriffithsonline.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-fork(1)
  5. +
+ +
+ + diff --git a/man/git-fresh-branch.1 b/man/git-fresh-branch.1 new file mode 100644 index 0000000..090e3e9 --- /dev/null +++ b/man/git-fresh-branch.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-FRESH\-BRANCH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-fresh\-branch\fR \- Create fresh branches +. +.SH "SYNOPSIS" +\fBgit\-fresh\-branch\fR +. +.SH "DESCRIPTION" +Creates empty local branch named \. +. +.SH "OPTIONS" + +. +.P +The name of the branch to create\. +. +.SH "EXAMPLES" +. +.nf + +$ git fresh\-branch docs +. +.fi +. +.SH "AUTHOR" +Written by Kenneth Reitz <\fIme@kennethreitz\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-fresh-branch.html b/man/git-fresh-branch.html new file mode 100644 index 0000000..1d85267 --- /dev/null +++ b/man/git-fresh-branch.html @@ -0,0 +1,117 @@ + + + + + + git-fresh-branch(1) - Create fresh branches + + + + +
+ + + +
    +
  1. git-fresh-branch(1)
  2. +
  3. +
  4. git-fresh-branch(1)
  5. +
+ +

NAME

+

+ git-fresh-branch - Create fresh branches +

+ +

SYNOPSIS

+ +

git-fresh-branch <branchname>

+ +

DESCRIPTION

+ +

Creates empty local branch named <branchname>.

+ +

OPTIONS

+ +

<branchname>

+ +

The name of the branch to create.

+ +

EXAMPLES

+ +
$ git fresh-branch docs
+
+ +

AUTHOR

+ +

Written by Kenneth Reitz <me@kennethreitz.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-fresh-branch(1)
  5. +
+ +
+ + diff --git a/man/git-gh-pages.1 b/man/git-gh-pages.1 new file mode 100644 index 0000000..619b0a1 --- /dev/null +++ b/man/git-gh-pages.1 @@ -0,0 +1,43 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-GH\-PAGES" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-gh\-pages\fR \- Create the GitHub Pages branch +. +.SH "SYNOPSIS" +\fBgit\-gh\-pages\fR +. +.SH "DESCRIPTION" +Create the GitHub Pages branch (gh\-pages) with an initial dummy index\.html file\. +. +.SH "EXAMPLES" +. +.nf + +$ git gh\-pages +setting up gh\-pages +Removing \.\.\. +[gh\-pages (root\-commit) 94f4b26] Initial commit + 1 file changed, 1 insertion(+) + create mode 100644 index\.html +Counting objects: 3, done\. +Writing objects: 100% (3/3), 232 bytes, done\. +Total 3 (delta 0), reused 0 (delta 0) +To git@github\.com:myuser/myrepository\.git + * [new branch] gh\-pages \-> gh\-pages +Branch gh\-pages set up to track remote branch gh\-pages from origin\. +complete +$ +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-gh-pages.html b/man/git-gh-pages.html new file mode 100644 index 0000000..d14fa7d --- /dev/null +++ b/man/git-gh-pages.html @@ -0,0 +1,123 @@ + + + + + + git-gh-pages(1) - Create the GitHub Pages branch + + + + +
+ + + +
    +
  1. git-gh-pages(1)
  2. +
  3. +
  4. git-gh-pages(1)
  5. +
+ +

NAME

+

+ git-gh-pages - Create the GitHub Pages branch +

+ +

SYNOPSIS

+ +

git-gh-pages

+ +

DESCRIPTION

+ +

Create the GitHub Pages branch (gh-pages) with an initial dummy index.html file.

+ +

EXAMPLES

+ +
$ git gh-pages
+setting up gh-pages
+Removing ...
+[gh-pages (root-commit) 94f4b26] Initial commit
+ 1 file changed, 1 insertion(+)
+ create mode 100644 index.html
+Counting objects: 3, done.
+Writing objects: 100% (3/3), 232 bytes, done.
+Total 3 (delta 0), reused 0 (delta 0)
+To git@github.com:myuser/myrepository.git
+ * [new branch]      gh-pages -> gh-pages
+Branch gh-pages set up to track remote branch gh-pages from origin.
+complete
+$
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-gh-pages(1)
  5. +
+ +
+ + diff --git a/man/git-graft.1 b/man/git-graft.1 new file mode 100644 index 0000000..fb9829e --- /dev/null +++ b/man/git-graft.1 @@ -0,0 +1,37 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-GRAFT" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-graft\fR \- Merge and destroy a given branch +. +.SH "SYNOPSIS" +\fBgit\-graft\fR [] +. +.SH "DESCRIPTION" +Merge commits from into which defaults to the current branch\. +. +.SH "OPTIONS" + +. +.P + +. +.SH "EXAMPLES" +. +.nf + +$ git graft new_feature dev +$ git graft new_feature +. +.fi +. +.SH "AUTHOR" +Written by Kenneth Reitz <\fIme@kennethreitz\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-graft.html b/man/git-graft.html new file mode 100644 index 0000000..fbc56fc --- /dev/null +++ b/man/git-graft.html @@ -0,0 +1,118 @@ + + + + + + git-graft(1) - Merge and destroy a given branch + + + + +
+ + + +
    +
  1. git-graft(1)
  2. +
  3. +
  4. git-graft(1)
  5. +
+ +

NAME

+

+ git-graft - Merge and destroy a given branch +

+ +

SYNOPSIS

+ +

git-graft <src-branch> [<dest-branch>]

+ +

DESCRIPTION

+ +

Merge commits from <src-branch> into <dest-branch> which defaults to the current branch.

+ +

OPTIONS

+ +

<src-branch>

+ +

<dest-branch>

+ +

EXAMPLES

+ +
$ git graft new_feature dev
+$ git graft new_feature
+
+ +

AUTHOR

+ +

Written by Kenneth Reitz <me@kennethreitz.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-graft(1)
  5. +
+ +
+ + diff --git a/man/git-ignore.1 b/man/git-ignore.1 new file mode 100644 index 0000000..7227f49 --- /dev/null +++ b/man/git-ignore.1 @@ -0,0 +1,171 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-IGNORE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-ignore\fR \- Add \.gitignore patterns +. +.SH "SYNOPSIS" +\fBgit\-ignore\fR [] [ []\.\.\.] +. +.SH "DESCRIPTION" +Adds the given _pattern_s to a \.gitignore file if it doesn\'t already exist\. +. +.SH "OPTIONS" + +. +.P +\-l, \-\-local +. +.P +Sets the context to the \.gitignore file in the current working directory\. (default) +. +.P +\-g, \-\-global +. +.P +Sets the context to the global gitignore file for the current user\. +. +.P + +. +.P +A space delimited list of patterns to append to the file in context\. +. +.SS "PATTERN FORMAT" +Pattern format as described in the git manual +. +.IP "\(bu" 4 +A blank line matches no files, so it can serve as a separator for readability\. To append a blank line use empty quotes ""\. +. +.IP "\(bu" 4 +A line starting with # serves as a comment\. For example, "# This is a comment" +. +.IP "\(bu" 4 +An optional prefix ! which negates the pattern; any matching file excluded by a previous pattern will become included again\. If a negated pattern matches, this will override lower precedence patterns sources\. To use an exclamation ! as command line argument it is best placed between single quotes \'\'\. For example, \'!src\' +. +.IP "\(bu" 4 +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)\. +. +.IP "\(bu" 4 +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)\. +. +.IP "\(bu" 4 +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"\. +. +.IP "\(bu" 4 +A leading slash matches the beginning of the pathname\. For example, "/*\.c" matches "cat\-file\.c" but not "mozilla\-sha1/sha1\.c"\. +. +.IP "" 0 +. +.SH "EXAMPLES" +All arguments are optional so calling git\-ignore alone will display first the global then the local gitignore files: +. +.IP "" 4 +. +.nf + +$ git ignore +Global gitignore: /home/alice/\.gitignore +# Numerous always\-ignore extensions +*\.diff +*\.err +*\.orig +*\.rej +*\.swo +*\.swp +*\.vi +*~ +*\.sass\-cache + +# OS or Editor folders +\.DS_Store +\.Trashes +\._* +Thumbs\.db +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- +Local gitignore: \.gitignore +\.cache +\.project +\.settings +\.tmproj +nbproject +. +.fi +. +.IP "" 0 +. +.P +If you only want to see the global context use the \-\-global argument (for local use \-\-local): +. +.IP "" 4 +. +.nf + +$ git ignore +Global gitignore: /home/alice/\.gitignore +\.DS_Store +\.Trashes +\._* +Thumbs\.db +. +.fi +. +.IP "" 0 +. +.P +To quickly append a new pattern to the default/local context simply: +. +.IP "" 4 +. +.nf + +$ git ignore *\.log +Adding pattern(s) to: \.gitignore +\.\.\. adding \'*\.log\' +. +.fi +. +.IP "" 0 +. +.P +You can now configure any patterns without ever using an editor, with a context and pattern arguments: The resulting configuration is also returned for your convenience\. +. +.IP "" 4 +. +.nf + +$ git ignore \-\-local "" "# Temporary files" *\.tmp "*\.log" tmp/* "" "# Files I\'d like to keep" \'!work\' "" +Adding pattern(s) to: \.gitignore +\.\.\. adding \'\' +\.\.\. adding \'# Temporary files\' +\.\.\. adding \'index\.tmp\' +\.\.\. adding \'*\.log\' +\.\.\. adding \'tmp/*\' +\.\.\. adding \'\' +\.\.\. adding \'# Files I\'d like to keep\' +\.\.\. adding \'!work\' +\.\.\. adding \'\' + +Local gitignore: \.gitignore + +# Temporary files +index\.tmp +*\.log + +# Files I\'d like to keep +!work +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> and Tema Bolshakov <\fItweekane@gmail\.com\fR> and Nick Lombard <\fIgithub@jigsoft\.co\.za\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-ignore.html b/man/git-ignore.html new file mode 100644 index 0000000..98cb2ad --- /dev/null +++ b/man/git-ignore.html @@ -0,0 +1,211 @@ + + + + + + git-ignore(1) - Add .gitignore patterns + + + + +
+ + + +
    +
  1. git-ignore(1)
  2. +
  3. +
  4. git-ignore(1)
  5. +
+ +

NAME

+

+ git-ignore - Add .gitignore patterns +

+ +

SYNOPSIS

+ +

git-ignore [<context>] [<pattern> [<pattern>]...]

+ +

DESCRIPTION

+ +

Adds the given _pattern_s to a .gitignore file if it doesn't already exist.

+ +

OPTIONS

+ +

<context>

+ +

-l, --local

+ +

Sets the context to the .gitignore file in the current working directory. (default)

+ +

-g, --global

+ +

Sets the context to the global gitignore file for the current user.

+ +

<pattern>

+ +

A space delimited list of patterns to append to the file in context.

+ +

PATTERN FORMAT

+ +

Pattern format as described in the git manual

+ +
    +
  • A blank line matches no files, so it can serve as a separator for readability. To append a blank line use empty quotes "".

  • +
  • A line starting with # serves as a comment. For example, "# This is a comment"

  • +
  • An optional prefix ! which negates the pattern; any matching file excluded by a previous pattern will become included again. If a negated pattern matches, this will override lower precedence patterns sources. To use an exclamation ! as command line argument it is best placed between single quotes ''. For example, '!src'

  • +
  • 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).

  • +
  • 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".

  • +
+ + +

EXAMPLES

+ +

All arguments are optional so calling git-ignore alone will display first the global then the local gitignore files:

+ +
$ git ignore
+Global gitignore: /home/alice/.gitignore
+# Numerous always-ignore extensions
+*.diff
+*.err
+*.orig
+*.rej
+*.swo
+*.swp
+*.vi
+*~
+*.sass-cache
+
+# OS or Editor folders
+.DS_Store
+.Trashes
+._*
+Thumbs.db
+---------------------------------
+Local gitignore: .gitignore
+.cache
+.project
+.settings
+.tmproj
+nbproject
+
+ +

If you only want to see the global context use the --global argument (for local use --local):

+ +
$ git ignore
+Global gitignore: /home/alice/.gitignore
+.DS_Store
+.Trashes
+._*
+Thumbs.db
+
+ +

To quickly append a new pattern to the default/local context simply:

+ +
$ git ignore *.log
+Adding pattern(s) to: .gitignore
+... adding '*.log'
+
+ +

You can now configure any patterns without ever using an editor, with a context and pattern arguments: +The resulting configuration is also returned for your convenience.

+ +
$ git ignore --local "" "# Temporary files" *.tmp "*.log" tmp/*  "" "# Files I'd like to keep" '!work'  ""
+Adding pattern(s) to: .gitignore
+... adding ''
+... adding '# Temporary files'
+... adding 'index.tmp'
+... adding '*.log'
+... adding 'tmp/*'
+... adding ''
+... adding '# Files I'd like to keep'
+... adding '!work'
+... adding ''
+
+Local gitignore: .gitignore
+
+# Temporary files
+index.tmp
+*.log
+
+# Files I'd like to keep
+!work
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca> and Tema Bolshakov <tweekane@gmail.com> +and Nick Lombard <github@jigsoft.co.za>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-ignore(1)
  5. +
+ +
+ + diff --git a/man/git-info.1 b/man/git-info.1 new file mode 100644 index 0000000..9b7ce21 --- /dev/null +++ b/man/git-info.1 @@ -0,0 +1,96 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-INFO" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-info\fR \- Returns information on current repository +. +.SH "SYNOPSIS" +\fBgit\-info\fR +. +.SH "DESCRIPTION" +Shows the following information about a repository: +. +.IP "1." 4 +Remote Url(s) +. +.IP "2." 4 +Remote Branches +. +.IP "3." 4 +Local Branches +. +.IP "4." 4 +Most recent commit +. +.IP "5." 4 +Configuration Info +. +.IP "" 0 +. +.SH "OPTIONS" +N/A +. +.SH "EXAMPLES" +Outputs info about a repo: +. +.IP "" 4 +. +.nf + +$ git info + +## Remote URLs: + +origin git@github\.com:sampleAuthor/git\-extras\.git (fetch) +origin git@github\.com:sampleAuthor/git\-extras\.git (push) + +## Remote Branches: + +origin/HEAD \-> origin/master +origin/myBranch + +## Local Branches: + +myBranch +* master + +## Most Recent Commit: + +commit e3952df2c172c6f3eb533d8d0b1a6c77250769a7 +Author: Sample Author + +Added git\-info command\. + +Type \'git log\' for more commits, or \'git show \' for full commit details\. + +## Configuration (\.git/config): + +color\.diff=auto +color\.status=auto +color\.branch=auto +user\.name=Sample Author +user\.email=sampleAuthor@gmail\.com +core\.repositoryformatversion=0 +core\.filemode=true +core\.bare=false +core\.logallrefupdates=true +core\.ignorecase=true +remote\.origin\.fetch=+refs/heads/*:refs/remotes/origin/* +remote\.origin\.url=git@github\.com:mub/git\-extras\.git +branch\.master\.remote=origin +branch\.master\.merge=refs/heads/master +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Leila Muhtasib <\fImuhtasib@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-info.html b/man/git-info.html new file mode 100644 index 0000000..8f410f8 --- /dev/null +++ b/man/git-info.html @@ -0,0 +1,167 @@ + + + + + + git-info(1) - Returns information on current repository + + + + +
+ + + +
    +
  1. git-info(1)
  2. +
  3. +
  4. git-info(1)
  5. +
+ +

NAME

+

+ git-info - Returns information on current repository +

+ +

SYNOPSIS

+ +

git-info

+ +

DESCRIPTION

+ +

Shows the following information about a repository:

+ +
    +
  1. Remote Url(s)
  2. +
  3. Remote Branches
  4. +
  5. Local Branches
  6. +
  7. Most recent commit
  8. +
  9. Configuration Info
  10. +
+ + +

OPTIONS

+ +

N/A

+ +

EXAMPLES

+ +

Outputs info about a repo:

+ +
$ git info
+
+## Remote URLs:
+
+origin      git@github.com:sampleAuthor/git-extras.git (fetch)
+origin      git@github.com:sampleAuthor/git-extras.git (push)
+
+## Remote Branches:
+
+origin/HEAD -> origin/master
+origin/myBranch
+
+## Local Branches:
+
+myBranch
+* master
+
+## Most Recent Commit:
+
+commit e3952df2c172c6f3eb533d8d0b1a6c77250769a7
+Author: Sample Author <sampleAuthor@gmail.com>
+
+Added git-info command.
+
+Type 'git log' for more commits, or 'git show <commit id>' for full commit details.
+
+## Configuration (.git/config):
+
+color.diff=auto
+color.status=auto
+color.branch=auto
+user.name=Sample Author
+user.email=sampleAuthor@gmail.com
+core.repositoryformatversion=0
+core.filemode=true
+core.bare=false
+core.logallrefupdates=true
+core.ignorecase=true
+remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
+remote.origin.url=git@github.com:mub/git-extras.git
+branch.master.remote=origin
+branch.master.merge=refs/heads/master
+
+ +

AUTHOR

+ +

Written by Leila Muhtasib <muhtasib@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-info(1)
  5. +
+ +
+ + diff --git a/man/git-local-commits.1 b/man/git-local-commits.1 new file mode 100644 index 0000000..acbee6e --- /dev/null +++ b/man/git-local-commits.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-LOCAL\-COMMITS" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-local\-commits\fR \- List local commits +. +.SH "SYNOPSIS" +\fBgit\-local\-commits\fR +. +.SH "DESCRIPTION" +Lists commits in the local branch that have not been pushed to origin\. +. +.SH "OPTIONS" + +. +.P +All arguments passed to \fBgit\-local\-commits\fR will be passed directly to \fBgit\-log\fR\. +. +.SH "EXAMPLES" +. +.nf + +$ git local\-commits \-\-graph +. +.fi +. +.SH "AUTHOR" +Written by Michael Komitee <\fImkomitee@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-local-commits.html b/man/git-local-commits.html new file mode 100644 index 0000000..75eeb11 --- /dev/null +++ b/man/git-local-commits.html @@ -0,0 +1,117 @@ + + + + + + git-local-commits(1) - List local commits + + + + +
+ + + +
    +
  1. git-local-commits(1)
  2. +
  3. +
  4. git-local-commits(1)
  5. +
+ +

NAME

+

+ git-local-commits - List local commits +

+ +

SYNOPSIS

+ +

git-local-commits <args>

+ +

DESCRIPTION

+ +

Lists commits in the local branch that have not been pushed to origin.

+ +

OPTIONS

+ +

<args>

+ +

All arguments passed to git-local-commits will be passed directly to git-log.

+ +

EXAMPLES

+ +
$ git local-commits --graph
+
+ +

AUTHOR

+ +

Written by Michael Komitee <mkomitee@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-local-commits(1)
  5. +
+ +
+ + diff --git a/man/git-lock.1 b/man/git-lock.1 new file mode 100644 index 0000000..29893be --- /dev/null +++ b/man/git-lock.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-LOCK" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-lock\fR \- Lock a file excluded from version control +. +.SH "SYNOPSIS" +\fBgit\-lock\fR +. +.SH "DESCRIPTION" +Lock local files from version control\. +. +.SH "OPTIONS" + +. +.P +The name of the filename\. +. +.SH "EXAMPLES" +. +.nf + +$ git lock config/database\.yml +. +.fi +. +.SH "AUTHOR" +Written by Julio Napuri <\fIjulionc@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-lock.html b/man/git-lock.html new file mode 100644 index 0000000..2825a2e --- /dev/null +++ b/man/git-lock.html @@ -0,0 +1,117 @@ + + + + + + git-lock(1) - Lock a file excluded from version control + + + + +
+ + + +
    +
  1. git-lock(1)
  2. +
  3. +
  4. git-lock(1)
  5. +
+ +

NAME

+

+ git-lock - Lock a file excluded from version control +

+ +

SYNOPSIS

+ +

git-lock <filename>

+ +

DESCRIPTION

+ +

Lock local files from version control.

+ +

OPTIONS

+ +

<filename>

+ +

The name of the filename.

+ +

EXAMPLES

+ +
$ git lock config/database.yml
+
+ +

AUTHOR

+ +

Written by Julio Napuri <julionc@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-lock(1)
  5. +
+ +
+ + diff --git a/man/git-locked.1 b/man/git-locked.1 new file mode 100644 index 0000000..e45ca40 --- /dev/null +++ b/man/git-locked.1 @@ -0,0 +1,32 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-LOCKED" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-locked\fR \- ls files that have been locked +. +.SH "SYNOPSIS" +\fBgit\-locked\fR +. +.SH "DESCRIPTION" +List local files that have been locked +. +.SH "EXAMPLES" +. +.nf + +$ git lock config/database\.yml +$ git locked +config/database\.yml +. +.fi +. +.SH "AUTHOR" +Written by Kevin Woo <\fIkevinawoo@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-locked.html b/man/git-locked.html new file mode 100644 index 0000000..b726c1f --- /dev/null +++ b/man/git-locked.html @@ -0,0 +1,112 @@ + + + + + + git-locked(1) - ls files that have been locked + + + + +
+ + + +
    +
  1. git-locked(1)
  2. +
  3. +
  4. git-locked(1)
  5. +
+ +

NAME

+

+ git-locked - ls files that have been locked +

+ +

SYNOPSIS

+ +

git-locked

+ +

DESCRIPTION

+ +

List local files that have been locked

+ +

EXAMPLES

+ +
$ git lock config/database.yml
+$ git locked
+config/database.yml
+
+ +

AUTHOR

+ +

Written by Kevin Woo <kevinawoo@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-locked(1)
  5. +
+ +
+ + diff --git a/man/git-missing.1 b/man/git-missing.1 new file mode 100644 index 0000000..ce87ef9 --- /dev/null +++ b/man/git-missing.1 @@ -0,0 +1,70 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-MISSING" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-missing\fR \- Show commits missing from another branch +. +.SH "SYNOPSIS" +\fBgit\-missing\fR [] [] +. +.SH "DESCRIPTION" +Shows commits that are in either of two branches but not both\. Useful for seeing what would come across in a merge or push\. +. +.SH "OPTIONS" +[] +. +.P +First branch to compare\. If not specified, defaults to currently checked out branch\. +. +.P + +. +.P +Second branch to compare\. +. +.P +[] +. +.P +Any flags that should be passed to \'git log\', such as \-\-no\-merges\. +. +.SH "EXAMPLES" +Show commits on either my current branch or master but not both: +. +.IP "" 4 +. +.nf + +$ git missing master +< d14b8f0 only on current checked out branch +> 97ef387 only on master +. +.fi +. +.IP "" 0 +. +.P +Show commits on either branch foo or branch bar but not both: +. +.IP "" 4 +. +.nf + +$ git missing foo bar +< b8f0d14 only on foo +> f38797e only on bar +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Nate Jones <\fInate@endot\.org\fR> +. +.SH "REPORTING BUGS" +<\fIhttp://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttp://github\.com/tj/git\-extras\fR> diff --git a/man/git-missing.html b/man/git-missing.html new file mode 100644 index 0000000..7f6447b --- /dev/null +++ b/man/git-missing.html @@ -0,0 +1,137 @@ + + + + + + git-missing(1) - Show commits missing from another branch + + + + +
+ + + +
    +
  1. git-missing(1)
  2. +
  3. +
  4. git-missing(1)
  5. +
+ +

NAME

+

+ git-missing - Show commits missing from another branch +

+ +

SYNOPSIS

+ +

git-missing [<first branch>] <second branch> [<git log options>]

+ +

DESCRIPTION

+ +

Shows commits that are in either of two branches but not both. Useful for + seeing what would come across in a merge or push.

+ +

OPTIONS

+ +

[<first branch>]

+ +

First branch to compare. If not specified, defaults to currently checked out branch.

+ +

<second branch>

+ +

Second branch to compare.

+ +

[<git log options>]

+ +

Any flags that should be passed to 'git log', such as --no-merges.

+ +

EXAMPLES

+ +

Show commits on either my current branch or master but not both:

+ +
$ git missing master
+< d14b8f0 only on current checked out branch
+> 97ef387 only on master
+
+ +

Show commits on either branch foo or branch bar but not both:

+ +
$ git missing foo bar
+< b8f0d14 only on foo
+> f38797e only on bar
+
+ +

AUTHOR

+ +

Written by Nate Jones <nate@endot.org>

+ +

REPORTING BUGS

+ +

<http://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<http://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-missing(1)
  5. +
+ +
+ + diff --git a/man/git-pr.1 b/man/git-pr.1 new file mode 100644 index 0000000..b15e4d3 --- /dev/null +++ b/man/git-pr.1 @@ -0,0 +1,82 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-PR" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-pr\fR \- Checks out a pull request locally +. +.SH "SYNOPSIS" +\fBgit\-pr\fR [] +. +.br +\fBgit\-pr clean\fR +. +.SH "DESCRIPTION" +Creates a local branch based on a GitHub pull request number, and switch to that branch afterwards\. +. +.SH "OPTIONS" + +. +.P +The name of the remote to fetch from\. Defaults to \fBorigin\fR\. +. +.SH "EXAMPLES" +This checks out the pull request \fB226\fR from \fBorigin\fR: +. +.IP "" 4 +. +.nf + +$ git pr 226 + +remote: Counting objects: 12, done\. +remote: Compressing objects: 100% (9/9), done\. +remote: Total 12 (delta 3), reused 9 (delta 3) +Unpacking objects: 100% (12/12), done\. +From https://github\.com/tj/git\-extras + * [new ref] refs/pull/226/head \-> pr/226 + +Switched to branch \'pr/226\' +. +.fi +. +.IP "" 0 +. +.P +This pulls from a different remote: +. +.IP "" 4 +. +.nf + +$ git pr 226 upstream +. +.fi +. +.IP "" 0 +. +.P +To clean up old branches: +. +.IP "" 4 +. +.nf + +$ git pr clean + +Deleted branch pr/226 (was b96a8c2)\. +Deleted branch pr/220 (was d34dc0f)\. +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Originally from https://gist\.github\.com/gnarf/5406589 +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-pr.html b/man/git-pr.html new file mode 100644 index 0000000..9d0edde --- /dev/null +++ b/man/git-pr.html @@ -0,0 +1,143 @@ + + + + + + git-pr(1) - Checks out a pull request locally + + + + +
+ + + +
    +
  1. git-pr(1)
  2. +
  3. +
  4. git-pr(1)
  5. +
+ +

NAME

+

+ git-pr - Checks out a pull request locally +

+ +

SYNOPSIS

+ +

git-pr <number> [<remote>]
+git-pr clean

+ +

DESCRIPTION

+ +

Creates a local branch based on a GitHub pull request number, and switch to + that branch afterwards.

+ +

OPTIONS

+ +

<remote>

+ +

The name of the remote to fetch from. Defaults to origin.

+ +

EXAMPLES

+ +

This checks out the pull request 226 from origin:

+ +
$ git pr 226
+
+remote: Counting objects: 12, done.
+remote: Compressing objects: 100% (9/9), done.
+remote: Total 12 (delta 3), reused 9 (delta 3)
+Unpacking objects: 100% (12/12), done.
+From https://github.com/tj/git-extras
+ * [new ref]         refs/pull/226/head -> pr/226
+
+Switched to branch 'pr/226'
+
+ +

This pulls from a different remote:

+ +
$ git pr 226 upstream
+
+ +

To clean up old branches:

+ +
$ git pr clean
+
+Deleted branch pr/226 (was b96a8c2).
+Deleted branch pr/220 (was d34dc0f).
+
+ +

AUTHOR

+ +

Originally from https://gist.github.com/gnarf/5406589

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-pr(1)
  5. +
+ +
+ + diff --git a/man/git-rebase-patch.1 b/man/git-rebase-patch.1 new file mode 100644 index 0000000..b58be0d --- /dev/null +++ b/man/git-rebase-patch.1 @@ -0,0 +1,63 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-REBASE\-PATCH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-rebase\-patch\fR \- Rebases a patch +. +.SH "SYNOPSIS" +\fBgit\-rebase\-patch\fR +. +.SH "DESCRIPTION" +Given you have a patch that doesn\'t apply to the current HEAD, but you know it applied to some commit in the past, \fBgit\-rebase\-patch\fR will help you find that commit and do a rebase\. +. +.SH "OPTIONS" +. +.TP + +The patch to be applied\. +. +.SH "EXAMPLES" +Executing +. +.IP "" 4 +. +.nf + +$ git rebase\-patch test\.patch +. +.fi +. +.IP "" 0 +. +.P +could give you something like that: +. +.IP "" 4 +. +.nf + +Trying to find a commit the patch applies to\.\.\. +Patch applied to dbcf408dd26 as 7dc8b23ae1a +First, rewinding head to replay your work on top of it\.\.\. +Applying: test\.patch +Using index info to reconstruct a base tree\.\.\. +Falling back to patching base and 3\-way merge\.\.\. +Auto\-merging README\.txt +. +.fi +. +.IP "" 0 +. +.P +Then your last commit has the changes of the patch and is named \fItest\.patch\fR\. +. +.SH "AUTHOR" +Written by Niklas Fiekas <\fIniklas\.fiekas@tu\-clausthal\.de\fR> +. +.SH "REPORTING BUGS" +<\fIhttp://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttp://github\.com/tj/git\-extras\fR> diff --git a/man/git-rebase-patch.html b/man/git-rebase-patch.html new file mode 100644 index 0000000..094daf5 --- /dev/null +++ b/man/git-rebase-patch.html @@ -0,0 +1,135 @@ + + + + + + git-rebase-patch(1) - Rebases a patch + + + + +
+ + + +
    +
  1. git-rebase-patch(1)
  2. +
  3. +
  4. git-rebase-patch(1)
  5. +
+ +

NAME

+

+ git-rebase-patch - Rebases a patch +

+ +

SYNOPSIS

+ +

git-rebase-patch <patch-file>

+ +

DESCRIPTION

+ +

Given you have a patch that doesn't apply to the current HEAD, but you know it +applied to some commit in the past, git-rebase-patch will help you find that +commit and do a rebase.

+ +

OPTIONS

+ +
+
<patch-file>
The patch to be applied.
+
+ + +

EXAMPLES

+ +

Executing

+ +
$ git rebase-patch test.patch
+
+ +

could give you something like that:

+ +
Trying to find a commit the patch applies to...
+Patch applied to dbcf408dd26 as 7dc8b23ae1a
+First, rewinding head to replay your work on top of it...
+Applying: test.patch
+Using index info to reconstruct a base tree...
+Falling back to patching base and 3-way merge...
+Auto-merging README.txt
+
+ +

Then your last commit has the changes of the patch and is named test.patch.

+ +

AUTHOR

+ +

Written by Niklas Fiekas <niklas.fiekas@tu-clausthal.de>

+ +

REPORTING BUGS

+ +

<http://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<http://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-rebase-patch(1)
  5. +
+ +
+ + diff --git a/man/git-refactor.1 b/man/git-refactor.1 new file mode 100644 index 0000000..f3d2315 --- /dev/null +++ b/man/git-refactor.1 @@ -0,0 +1,47 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-REFACTOR" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-refactor\fR \- Create refactor branch +. +.SH "SYNOPSIS" +\fBgit\-refactor\fR [finish] +. +.SH "DESCRIPTION" +Create the given refactor branch +. +.SH "OPTIONS" + +. +.P +Merge and delete the refactor branch\. +. +.P + +. +.P +The name of the refactor branch\. +. +.SH "EXAMPLES" +. +.nf + +$ git refactor mainlib_refactor +\.\.\. +$ git commit \-m "Some changes" +\.\.\. +$ git checkout master +$ git refactor finish mainlib_refactor +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-refactor.html b/man/git-refactor.html new file mode 100644 index 0000000..809b912 --- /dev/null +++ b/man/git-refactor.html @@ -0,0 +1,126 @@ + + + + + + git-refactor(1) - Create refactor branch + + + + +
+ + + +
    +
  1. git-refactor(1)
  2. +
  3. +
  4. git-refactor(1)
  5. +
+ +

NAME

+

+ git-refactor - Create refactor branch +

+ +

SYNOPSIS

+ +

git-refactor [finish] <name>

+ +

DESCRIPTION

+ +

Create the given refactor branch

+ +

OPTIONS

+ +

<finish>

+ +

Merge and delete the refactor branch.

+ +

<name>

+ +

The name of the refactor branch.

+ +

EXAMPLES

+ +
$ git refactor mainlib_refactor
+...
+$ git commit -m "Some changes"
+...
+$ git checkout master
+$ git refactor finish mainlib_refactor
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-refactor(1)
  5. +
+ +
+ + diff --git a/man/git-release.1 b/man/git-release.1 new file mode 100644 index 0000000..747c50a --- /dev/null +++ b/man/git-release.1 @@ -0,0 +1,63 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-RELEASE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-release\fR \- Commit, tag and push changes to the repository +. +.SH "SYNOPSIS" +\fBgit\-release\fR [-c] [-r ] +. +.SH "DESCRIPTION" +Commits changes with message "Release ", tags with the given and pushes the branch / tags\. +Optionally it generates a changelog (see git-changelog) and a remote can be defined\. The order of first -c or -r does not matter\. +. +.SH "OPTIONS" + +. +.P +The name of the newly created tag\. Also used in tag comment\. +. +.P +-c +. +.P +Generates or populates the changelog with all commit message since the last tag. For more info see git-changelog.\. +. +.P +-r +. +.P +The "remote" repository that is destination of a push operation: it is passed to git push\. +. +.SH "EXAMPLES" +. +.IP "\(bu" 4 +Release commit with the given \. +. +.IP +$ git release 0\.1\.0 +. +.IP "\(bu" 4 +Release commit with the given and populate changelog\. +. +.IP +$ git release 0\.1\.0 -c +. +.IP "\(bu" 4 +Release commit with the given and push to specific remote\. +. +.IP +$ git release 0\.1\.0 -r github +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-release.html b/man/git-release.html new file mode 100644 index 0000000..8be38f3 --- /dev/null +++ b/man/git-release.html @@ -0,0 +1,128 @@ + + + + + + git-release(1) - Commit, tag and push changes to the repository + + + + +
+ + + +
    +
  1. git-release(1)
  2. +
  3. +
  4. git-release(1)
  5. +
+ +

NAME

+

+ git-release - Commit, tag and push changes to the repository +

+ +

SYNOPSIS

+ +

git-release <tagname> [<remote>]

+ +

DESCRIPTION

+ +

Commits changes with message "Release <tagname>", tags with the given <tagname> and pushes the branch / tags.

+ +

OPTIONS

+ +

<tagname>

+ +

The name of the newly created tag. Also used in tag comment.

+ +

<remote>

+ +

The "remote" repository that is destination of a push operation: it is passed to git push.

+ +

EXAMPLES

+ +
    +
  • Release commit with the given <tagname>.

    + +

    $ git release 0.1.0

  • +
  • Release commit with the given <tagname> and push to specific remote.

    + +

    $ git release 0.1.0 github

  • +
+ + +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-release(1)
  5. +
+ +
+ + diff --git a/man/git-rename-tag.1 b/man/git-rename-tag.1 new file mode 100644 index 0000000..08c45de --- /dev/null +++ b/man/git-rename-tag.1 @@ -0,0 +1,58 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-RENAME\-TAG" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-rename\-tag\fR \- Rename a tag +. +.SH "SYNOPSIS" +\fBgit\-rename\-tag\fR +. +.SH "DESCRIPTION" +Rename a tag (locally and remotely) +. +.SH "OPTIONS" + +. +.P +The name of the tag you want to rename\. +. +.P + +. +.P +The new name of the tag\. +. +.SH "EXAMPLES" +. +.nf + +$ git tag test +$ git push \-\-tags +Total 0 (delta 0), reused 0 (delta 0) +To git@myserver\.com:myuser/myrepository\.git + * [new tag] test \-> test +$ git tag +test +$ git rename\-tag test test2 +Deleted tag \'test\' (was 1111111) +Total 0 (delta 0), reused 0 (delta 0) +To git@myserver\.com:myuser/myrepository\.git + * [new tag] test2 \-> test2 +remote: warning: Deleting a non\-existent ref\. +To git@myserver\.com:myuser/myrepository\.git + \- [deleted] refs/tag/test +$ git tag +test2 +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-rename-tag.html b/man/git-rename-tag.html new file mode 100644 index 0000000..c614c01 --- /dev/null +++ b/man/git-rename-tag.html @@ -0,0 +1,137 @@ + + + + + + git-rename-tag(1) - Rename a tag + + + + +
+ + + +
    +
  1. git-rename-tag(1)
  2. +
  3. +
  4. git-rename-tag(1)
  5. +
+ +

NAME

+

+ git-rename-tag - Rename a tag +

+ +

SYNOPSIS

+ +

git-rename-tag <old-tag-name> <new-tag-name>

+ +

DESCRIPTION

+ +

Rename a tag (locally and remotely)

+ +

OPTIONS

+ +

<old-tag-name>

+ +

The name of the tag you want to rename.

+ +

<new-tag-name>

+ +

The new name of the tag.

+ +

EXAMPLES

+ +
$ git tag test
+$ git push --tags
+Total 0 (delta 0), reused 0 (delta 0)
+To git@myserver.com:myuser/myrepository.git
+ * [new tag]         test -> test
+$ git tag
+test
+$ git rename-tag test test2
+Deleted tag 'test' (was 1111111)
+Total 0 (delta 0), reused 0 (delta 0)
+To git@myserver.com:myuser/myrepository.git
+ * [new tag]         test2 -> test2
+remote: warning: Deleting a non-existent ref.
+To git@myserver.com:myuser/myrepository.git
+ - [deleted]         refs/tag/test
+$ git tag
+test2
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-rename-tag(1)
  5. +
+ +
+ + diff --git a/man/git-repl.1 b/man/git-repl.1 new file mode 100644 index 0000000..cbdeed3 --- /dev/null +++ b/man/git-repl.1 @@ -0,0 +1,49 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-REPL" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-repl\fR \- git read\-eval\-print\-loop +. +.SH "SYNOPSIS" +\fBgit\-repl\fR +. +.SH "DESCRIPTION" +. +.SH "OPTIONS" +GIT read\-eval\-print\-loop: +. +.IP "" 4 +. +.nf + +$ git repl + +git> ls\-files +History\.md +Makefile +Readme\.md +bin/git\-changelog +bin/git\-count +bin/git\-delete\-branch +bin/git\-delete\-tag +bin/git\-ignore +bin/git\-release + +git> quit +. +.fi +. +.IP "" 0 +. +.SH "EXAMPLES" +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-repl.html b/man/git-repl.html new file mode 100644 index 0000000..001342a --- /dev/null +++ b/man/git-repl.html @@ -0,0 +1,126 @@ + + + + + + git-repl(1) - git read-eval-print-loop + + + + +
+ + + +
    +
  1. git-repl(1)
  2. +
  3. +
  4. git-repl(1)
  5. +
+ +

NAME

+

+ git-repl - git read-eval-print-loop +

+ +

SYNOPSIS

+ +

git-repl

+ +

DESCRIPTION

+ +

OPTIONS

+ +

GIT read-eval-print-loop:

+ +
$ git repl
+
+git> ls-files
+History.md
+Makefile
+Readme.md
+bin/git-changelog
+bin/git-count
+bin/git-delete-branch
+bin/git-delete-tag
+bin/git-ignore
+bin/git-release
+
+git> quit
+
+ +

EXAMPLES

+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-repl(1)
  5. +
+ +
+ + diff --git a/man/git-reset-file.1 b/man/git-reset-file.1 new file mode 100644 index 0000000..3627976 --- /dev/null +++ b/man/git-reset-file.1 @@ -0,0 +1,60 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-RESET\-FILE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-reset\-file\fR \- Reset one file +. +.SH "SYNOPSIS" +\fBgit\-reset\-file\fR [] commit\-hash +. +.SH "DESCRIPTION" +Reset one file to HEAD or certain commit\-hash +. +.SH "OPTIONS" + +. +.P +The name of the file to reset\. +. +.P + +. +.P +(Optional) Hash of commit to reset the file to\. Defaults to HEAD\. +. +.SH "EXAMPLES" +Reset one file to HEAD +. +.IP "" 4 +. +.nf + +$ git reset\-file \.htaccess +. +.fi +. +.IP "" 0 +. +.P +or reset one file to certain commit +. +.IP "" 4 +. +.nf + +$ git reset\-file \.htaccess dc82b19 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Sasha Khamkov <\fIsanusart@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-reset-file.html b/man/git-reset-file.html new file mode 100644 index 0000000..ffff18b --- /dev/null +++ b/man/git-reset-file.html @@ -0,0 +1,128 @@ + + + + + + git-reset-file(1) - Reset one file + + + + +
+ + + +
    +
  1. git-reset-file(1)
  2. +
  3. +
  4. git-reset-file(1)
  5. +
+ +

NAME

+

+ git-reset-file - Reset one file +

+ +

SYNOPSIS

+ +

git-reset-file [<filename>] commit-hash

+ +

DESCRIPTION

+ +

Reset one file to HEAD or certain commit-hash

+ +

OPTIONS

+ +

<filename>

+ +

The name of the file to reset.

+ +

<commit-hash>

+ +

(Optional) Hash of commit to reset the file to. Defaults to HEAD.

+ +

EXAMPLES

+ +

Reset one file to HEAD

+ +
$ git reset-file .htaccess
+
+ +

or reset one file to certain commit

+ +
$ git reset-file .htaccess dc82b19
+
+ +

AUTHOR

+ +

Written by Sasha Khamkov <sanusart@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-reset-file(1)
  5. +
+ +
+ + diff --git a/man/git-root.1 b/man/git-root.1 new file mode 100644 index 0000000..3411188 --- /dev/null +++ b/man/git-root.1 @@ -0,0 +1,45 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-ROOT" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-root\fR \- show path of root +. +.SH "SYNOPSIS" +\fBgit root\fR \fIOPTIONS\fR +. +.SH "DESCRIPTION" +print the path for the root directory of git repo +. +.SH "OPTIONS" +\-r, \-\-relative +. +.P +show the relative path from root directory to current directory +. +.SH "EXAMPLES" +. +.nf + +$ cd \.\.\./git\-extras/bin +$ git root \-r +bin/ +$ git root +/home/\.\.\./git\-extras +$ cd `git root` +$ pwd +/home/\.\.\./git\-extras +# then we can +$ git add \. && git commit +. +.fi +. +.SH "AUTHOR" +Written by spacewander <\fIspacewanderlzx@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-root.html b/man/git-root.html new file mode 100644 index 0000000..46ff5b8 --- /dev/null +++ b/man/git-root.html @@ -0,0 +1,126 @@ + + + + + + git-root(1) - show path of root + + + + +
+ + + +
    +
  1. git-root(1)
  2. +
  3. +
  4. git-root(1)
  5. +
+ +

NAME

+

+ git-root - show path of root +

+ +

SYNOPSIS

+ +

git root OPTIONS

+ +

DESCRIPTION

+ +

print the path for the root directory of git repo

+ +

OPTIONS

+ +

-r, --relative

+ +

show the relative path from root directory to current directory

+ +

EXAMPLES

+ +
$ cd .../git-extras/bin
+$ git root -r
+bin/
+$ git root
+/home/.../git-extras
+$ cd `git root`
+$ pwd
+/home/.../git-extras
+# then we can
+$ git add . && git commit
+
+ +

AUTHOR

+ +

Written by spacewander <spacewanderlzx@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-root(1)
  5. +
+ +
+ + diff --git a/man/git-setup.1 b/man/git-setup.1 new file mode 100644 index 0000000..91c72b5 --- /dev/null +++ b/man/git-setup.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-SETUP" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-setup\fR \- Set up a git repository +. +.SH "SYNOPSIS" +\fBgit\-setup\fR [] +. +.SH "DESCRIPTION" +Set up a git repository if one doesn\'t exist, add all files and make an initial commit\. +. +.SH "OPTIONS" + +. +.P +The name of a new directory to setup\. By default, the current working directory\. +. +.SH "EXAMPLES" +. +.nf + +$ git setup path/to/repository +. +.fi +. +.SH "AUTHOR" +Written by Aggelos Orfanakos <\fIagorf@agorf\.gr\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-setup.html b/man/git-setup.html new file mode 100644 index 0000000..66a89d8 --- /dev/null +++ b/man/git-setup.html @@ -0,0 +1,117 @@ + + + + + + git-setup(1) - Set up a git repository + + + + +
+ + + +
    +
  1. git-setup(1)
  2. +
  3. +
  4. git-setup(1)
  5. +
+ +

NAME

+

+ git-setup - Set up a git repository +

+ +

SYNOPSIS

+ +

git-setup [<directory>]

+ +

DESCRIPTION

+ +

Set up a git repository if one doesn't exist, add all files and make an initial commit.

+ +

OPTIONS

+ +

<directory>

+ +

The name of a new directory to setup. By default, the current working directory.

+ +

EXAMPLES

+ +
$ git setup path/to/repository
+
+ +

AUTHOR

+ +

Written by Aggelos Orfanakos <agorf@agorf.gr>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-setup(1)
  5. +
+ +
+ + diff --git a/man/git-show-tree.1 b/man/git-show-tree.1 new file mode 100644 index 0000000..f33d7a5 --- /dev/null +++ b/man/git-show-tree.1 @@ -0,0 +1,63 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-SHOW\-TREE" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-show\-tree\fR \- show branch tree of commit history +. +.SH "SYNOPSIS" +\fBgit\-show\-tree\fR +. +.SH "DESCRIPTION" +Show the decorated graph view of one liner summarized commits from all branches\. +. +.SH "EXAMPLES" +Output the commit history log for all branches as tree view: +. +.IP "" 4 +. +.nf + +* 4b57684 (HEAD, develop) Merge branch upstream master\. +|\e +| * 515e94a Merge pull request #128 from nickl\-/git\-extras\-html\-hyperlinks +| |\e +| | * 815db8b (nickl/git\-extras\-html\-hyperlinks, git\-extras\-html\-hyperlinks) help ronn make hyperlinks\. +| * | 7398d10 (nickl/develop) Fix #127 git\-ignore won\'t add duplicates\. +| |/ +| | * ab72c1e (refs/stash) WIP on develop: 5e943f5 Fix #127 git\-ignore won\'t add duplicates\. +| |/ +|/| +* | 730ca89 (bolshakov) Rebase bolshakov with master +|/ +* 60f8371 (origin/master, origin/HEAD, master) Merge pull request #126 from agrimaldi/fix\-changelog\-last\-tag +* 9627780 (tag: 1\.7\.0) Release 1\.7\.0 +* 2e53ff6 (tag: 1\.6\.0) Release 1\.6\.0 +* bbd32d8 (tag: 1\.5\.1) Release 1\.5\.1 +| * 6b6b758 (nickl/gh\-pages, gh\-pages) add example git\-extras to gh\-pages +| * 19cfd11 (origin/gh\-pages) Index page +| | * 881a70e (tag: 1\.5\.0) Release 1\.5\.0 +| |/ +|/| +* | 4db5ee0 (tag: 1\.4\.0) Release 1\.4\.0 +* | 9b0bc89 (tag: 1\.3\.0) Release 1\.3\.0 +* | be49961 (tag: 1\.2\.0) Release 1\.2\.0 +* | c1d2dfc (tag: 1\.1\.0) Release 1\.1\.0 +* | 4a56adb (tag: 1\.0\.0) Release 1\.0\.0 +* | 948308b (tag: 0\.9\.0) Release 0\.9\.0 +* | 40b131d (tag: 0\.8\.1) Release 0\.8\.1 +* | 391431d (tag: 0\.8\.0) Release 0\.8\.0 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Nick Lombard \fIgithub@jigsoft\.co\.za\fR +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-show-tree.html b/man/git-show-tree.html new file mode 100644 index 0000000..b4d9e1a --- /dev/null +++ b/man/git-show-tree.html @@ -0,0 +1,140 @@ + + + + + + git-show-tree(1) - show branch tree of commit history + + + + +
+ + + +
    +
  1. git-show-tree(1)
  2. +
  3. +
  4. git-show-tree(1)
  5. +
+ +

NAME

+

+ git-show-tree - show branch tree of commit history +

+ +

SYNOPSIS

+ +

git-show-tree

+ +

DESCRIPTION

+ +

Show the decorated graph view of one liner summarized commits from all branches.

+ +

EXAMPLES

+ +

Output the commit history log for all branches as tree view:

+ +
*   4b57684 (HEAD, develop) Merge branch upstream master.
+|\
+| *   515e94a Merge pull request #128 from nickl-/git-extras-html-hyperlinks
+| |\
+| | * 815db8b (nickl/git-extras-html-hyperlinks, git-extras-html-hyperlinks) help ronn make hyperlinks.
+| * | 7398d10 (nickl/develop) Fix #127 git-ignore won't add duplicates.
+| |/
+| | * ab72c1e (refs/stash) WIP on develop: 5e943f5 Fix #127 git-ignore won't add duplicates.
+| |/
+|/|
+* | 730ca89 (bolshakov) Rebase bolshakov with master
+|/
+* 60f8371 (origin/master, origin/HEAD, master) Merge pull request #126 from agrimaldi/fix-changelog-last-tag
+* 9627780 (tag: 1.7.0) Release 1.7.0
+* 2e53ff6 (tag: 1.6.0) Release 1.6.0
+* bbd32d8 (tag: 1.5.1) Release 1.5.1
+| * 6b6b758 (nickl/gh-pages, gh-pages) add example git-extras to gh-pages
+| * 19cfd11 (origin/gh-pages) Index page
+| | * 881a70e (tag: 1.5.0) Release 1.5.0
+| |/
+|/|
+* | 4db5ee0 (tag: 1.4.0) Release 1.4.0
+* | 9b0bc89 (tag: 1.3.0) Release 1.3.0
+* | be49961 (tag: 1.2.0) Release 1.2.0
+* | c1d2dfc (tag: 1.1.0) Release 1.1.0
+* | 4a56adb (tag: 1.0.0) Release 1.0.0
+* | 948308b (tag: 0.9.0) Release 0.9.0
+* | 40b131d (tag: 0.8.1) Release 0.8.1
+* | 391431d (tag: 0.8.0) Release 0.8.0
+
+ +

AUTHOR

+ +

Written by Nick Lombard github@jigsoft.co.za

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-show-tree(1)
  5. +
+ +
+ + diff --git a/man/git-squash.1 b/man/git-squash.1 new file mode 100644 index 0000000..112e20e --- /dev/null +++ b/man/git-squash.1 @@ -0,0 +1,53 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-SQUASH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-squash\fR \- Import changes from a branch +. +.SH "SYNOPSIS" +\fBgit\-squash\fR [] +. +.SH "DESCRIPTION" +Produce the working tree and index state as if a real merge happened without the commit or merge marks\. +. +.SH "OPTIONS" + +. +.P +Branch to squash on the actual branch\. +. +.P + A commit reference (has to be from the current branch) can also be used as the first argument\. A range of commits \fIsha\fR\.\.HEAD will be squashed\. +. +.P + +. +.P +If commit\-message is given, commit the squash result and delete the source\-branch\. +. +.SH "EXAMPLES" +. +.nf + +$ git squash my\-other\-branch +Updating a2740f5\.\.533b19c +Fast\-forward +Squash commit \-\- not updating HEAD + my\-changed\-file | 1 + + 1 file changed, 1 insertion(+) +$ git commit \-m "New commit without a real merge" + +$ git squash HEAD~3 "Commit message" +. +.fi +. +.SH "AUTHOR" +Written by Jesús Espino <\fIjespinog@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-squash.html b/man/git-squash.html new file mode 100644 index 0000000..3790a31 --- /dev/null +++ b/man/git-squash.html @@ -0,0 +1,134 @@ + + + + + + git-squash(1) - Import changes from a branch + + + + +
+ + + +
    +
  1. git-squash(1)
  2. +
  3. +
  4. git-squash(1)
  5. +
+ +

NAME

+

+ git-squash - Import changes from a branch +

+ +

SYNOPSIS

+ +

git-squash <source-branch|commit ref> [<commit-message>]

+ +

DESCRIPTION

+ +

Produce the working tree and index state as if a real merge happened without + the commit or merge marks.

+ +

OPTIONS

+ +

<source-branch>

+ +

Branch to squash on the actual branch.

+ +

<commit reference> + A commit reference (has to be from the current branch) can also be used as the + first argument. A range of commits sha..HEAD will be squashed.

+ +

<commit-message>

+ +

If commit-message is given, commit the squash result and delete the source-branch.

+ +

EXAMPLES

+ +
$ git squash my-other-branch
+Updating a2740f5..533b19c
+Fast-forward
+Squash commit -- not updating HEAD
+ my-changed-file | 1 +
+ 1 file changed, 1 insertion(+)
+$ git commit -m "New commit without a real merge"
+
+$ git squash HEAD~3 "Commit message"
+
+ +

AUTHOR

+ +

Written by Jesús Espino <jespinog@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-squash(1)
  5. +
+ +
+ + diff --git a/man/git-summary.1 b/man/git-summary.1 new file mode 100644 index 0000000..8d962c4 --- /dev/null +++ b/man/git-summary.1 @@ -0,0 +1,85 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-SUMMARY" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-summary\fR \- Show repository summary +. +.SH "SYNOPSIS" +\fBgit\-summary\fR [] [\-\-line] +. +.SH "DESCRIPTION" +Shows a summary of the repository\. +. +.SH "OPTIONS" + +. +.P +Summarize only the range of commits included in the \. +. +.P +\-\-line +. +.P +Summarize with lines other than commits +. +.SH "EXAMPLES" +Outputs a repo summary: +. +.IP "" 4 +. +.nf + +$ git summary + +project : express +repo age : 10 months ago +commits : 1893 +active : 93 days +files : 111 +authors : + 1285 visionmedia + 478 Tj Holowaychuk + 48 Aaron Heckmann + 34 csausdev + 26 ciaranj + 6 Guillermo Rauch + 3 Nick Poulden + 2 Brian McKinney + 2 Benny Wong + 1 Justin Lilly + 1 James Herdman + 1 Adam Sanderson + 1 Viktor Kelemen + 1 Gregory Ritter + 1 Greg Ritter + 1 ewoudj + 1 isaacs + 1 Matt Colyer +. +.fi +. +.IP "" 0 +. +.P +This command can also take a commitish, and will print a summary for the range of commits included in the commitish: +. +.IP "" 4 +. +.nf + +$ git summary v42\.\. +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-summary.html b/man/git-summary.html new file mode 100644 index 0000000..469b538 --- /dev/null +++ b/man/git-summary.html @@ -0,0 +1,154 @@ + + + + + + git-summary(1) - Show repository summary + + + + +
+ + + +
    +
  1. git-summary(1)
  2. +
  3. +
  4. git-summary(1)
  5. +
+ +

NAME

+

+ git-summary - Show repository summary +

+ +

SYNOPSIS

+ +

git-summary [<commitish>] [--line]

+ +

DESCRIPTION

+ +

Shows a summary of the repository.

+ +

OPTIONS

+ +

<commitish>

+ +

Summarize only the range of commits included in the <commitish>.

+ +

--line

+ +

Summarize with lines other than commits

+ +

EXAMPLES

+ +

Outputs a repo summary:

+ +
$ git summary
+
+project  : express
+repo age : 10 months ago
+commits  : 1893
+active   : 93 days
+files    : 111
+authors  :
+ 1285 visionmedia
+  478 Tj Holowaychuk
+   48 Aaron Heckmann
+   34 csausdev
+   26 ciaranj
+    6 Guillermo Rauch
+    3 Nick Poulden
+    2 Brian McKinney
+    2 Benny Wong
+    1 Justin Lilly
+    1 James Herdman
+    1 Adam Sanderson
+    1 Viktor Kelemen
+    1 Gregory Ritter
+    1 Greg Ritter
+    1 ewoudj
+    1 isaacs
+    1 Matt Colyer
+
+ +

This command can also take a commitish, and will print a summary for the range + of commits included in the commitish:

+ +
$ git summary v42..
+
+ +

AUTHOR

+ +

Written by Tj Holowaychuk <tj@vision-media.ca>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-summary(1)
  5. +
+ +
+ + diff --git a/man/git-touch.1 b/man/git-touch.1 new file mode 100644 index 0000000..d1c7556 --- /dev/null +++ b/man/git-touch.1 @@ -0,0 +1,31 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-TOUCH" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-touch\fR \- Touch and add file to the index +. +.SH "SYNOPSIS" +\fBgit\-touch\fR +. +.SH "DESCRIPTION" +Call \fBtouch\fR on the given file and add it to the current index\. Used one\-step creating new files\. +. +.SH "OPTIONS" + +. +.P +File to be touched\. +. +.SH "EXAMPLES" +$ git touch Makefile +. +.SH "AUTHOR" +Written by Alex McHale <\fIalexmchale@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-touch.html b/man/git-touch.html new file mode 100644 index 0000000..0b8bde6 --- /dev/null +++ b/man/git-touch.html @@ -0,0 +1,116 @@ + + + + + + git-touch(1) - Touch and add file to the index + + + + +
+ + + +
    +
  1. git-touch(1)
  2. +
  3. +
  4. git-touch(1)
  5. +
+ +

NAME

+

+ git-touch - Touch and add file to the index +

+ +

SYNOPSIS

+ +

git-touch <filename>

+ +

DESCRIPTION

+ +

Call touch on the given file and add it to the current index. Used one-step creating new files.

+ +

OPTIONS

+ +

<filename>

+ +

File to be touched.

+ +

EXAMPLES

+ +

$ git touch Makefile

+ +

AUTHOR

+ +

Written by Alex McHale <alexmchale@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-touch(1)
  5. +
+ +
+ + diff --git a/man/git-undo.1 b/man/git-undo.1 new file mode 100644 index 0000000..346d54e --- /dev/null +++ b/man/git-undo.1 @@ -0,0 +1,66 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-UNDO" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-undo\fR \- Remove latest commits +. +.SH "SYNOPSIS" +\fBgit\-undo\fR [] [\-s, \-\-soft, \-h, \-\-hard] +. +.SH "DESCRIPTION" +Removes the latest commits\. +. +.SH "OPTIONS" +\-\-soft or \-s +. +.P +This is the default, only rolls back the commit but changes remain un\-staged\. +. +.P +\-\-hard or \-h +. +.P +This option wipes your commit(s), so that your changes cannot be recovered\. Use with care\. +. +.P + +. +.P +Number of commits to remove\. Defaults to \fI1\fR, thus remove the latest commit\. +. +.SH "EXAMPLES" +Removes the latest commit\. +. +.IP "" 4 +. +.nf + +$ git undo +. +.fi +. +.IP "" 0 +. +.P +Remove the latest 3 commits: +. +.IP "" 4 +. +.nf + +$ git undo 3 +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Kenneth Reitz <\fIme@kennethreitz\.com\fR> and Nick Lombard <\fIgithub@jigsoft\.co\.za\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-undo.html b/man/git-undo.html new file mode 100644 index 0000000..cb57a59 --- /dev/null +++ b/man/git-undo.html @@ -0,0 +1,132 @@ + + + + + + git-undo(1) - Remove latest commits + + + + +
+ + + +
    +
  1. git-undo(1)
  2. +
  3. +
  4. git-undo(1)
  5. +
+ +

NAME

+

+ git-undo - Remove latest commits +

+ +

SYNOPSIS

+ +

git-undo [<commitcount>] [-s, --soft, -h, --hard]

+ +

DESCRIPTION

+ +

Removes the latest commits.

+ +

OPTIONS

+ +

--soft or -s

+ +

This is the default, only rolls back the commit but changes remain un-staged.

+ +

--hard or -h

+ +

This option wipes your commit(s), so that your changes cannot be recovered. Use with care.

+ +

<commitcount>

+ +

Number of commits to remove. Defaults to 1, thus remove the latest commit.

+ +

EXAMPLES

+ +

Removes the latest commit.

+ +
$ git undo
+
+ +

Remove the latest 3 commits:

+ +
$ git undo 3
+
+ +

AUTHOR

+ +

Written by Kenneth Reitz <me@kennethreitz.com> and Nick Lombard <github@jigsoft.co.za>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-undo(1)
  5. +
+ +
+ + diff --git a/man/git-unlock.1 b/man/git-unlock.1 new file mode 100644 index 0000000..744e8db --- /dev/null +++ b/man/git-unlock.1 @@ -0,0 +1,36 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-UNLOCK" "1" "November 2014" "" "" +. +.SH "NAME" +\fBgit\-unlock\fR \- Unlock a file excluded from version control +. +.SH "SYNOPSIS" +\fBgit\-lock\fR +. +.SH "DESCRIPTION" +Unlock local files from version control\. +. +.SH "OPTIONS" + +. +.P +The name of the filename\. +. +.SH "EXAMPLES" +. +.nf + +$ git unlock config/database\.yml +. +.fi +. +.SH "AUTHOR" +Written by Julio Napuri <\fIjulionc@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttps://github\.com/tj/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-unlock.html b/man/git-unlock.html new file mode 100644 index 0000000..ec48d1f --- /dev/null +++ b/man/git-unlock.html @@ -0,0 +1,117 @@ + + + + + + git-unlock(1) - Unlock a file excluded from version control + + + + +
+ + + +
    +
  1. git-unlock(1)
  2. +
  3. +
  4. git-unlock(1)
  5. +
+ +

NAME

+

+ git-unlock - Unlock a file excluded from version control +

+ +

SYNOPSIS

+ +

git-lock <filename>

+ +

DESCRIPTION

+ +

Unlock local files from version control.

+ +

OPTIONS

+ +

<filename>

+ +

The name of the filename.

+ +

EXAMPLES

+ +
$ git unlock config/database.yml
+
+ +

AUTHOR

+ +

Written by Julio Napuri <julionc@gmail.com>

+ +

REPORTING BUGS

+ +

<https://github.com/tj/git-extras/issues>

+ +

SEE ALSO

+ +

<https://github.com/tj/git-extras>

+ + +
    +
  1. +
  2. November 2014
  3. +
  4. git-unlock(1)
  5. +
+ +
+ +