-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add a "Tools" section #2092
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add a "Tools" section #2092
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
section: "tools" | ||
title: "Git - Tools" | ||
url: /tools.html | ||
--- | ||
|
||
<div id="main"> | ||
|
||
<h1> Tools </h1> | ||
|
||
<p> | ||
The community has built a huge number of tools to make it easier to use Git. | ||
While you can use Git on its own, most Git users use some of these extra tools. | ||
There are editor integrations, GUIs, tools for resolving merge conflicts, | ||
hosting services, and much more. | ||
</p> | ||
|
||
<div class="callout icon"> | ||
<a href="{{< relurl "tools/command-line">}}"> | ||
<img alt="Terminal icon" aria-hidden="true" src="{{< relurl "images/icons/fa-terminal.svg">}}" > | ||
<h3> Command Line Tools </h3> | ||
</a> | ||
|
||
<p> | ||
Tools to view and manipulate your Git history | ||
</p> | ||
</div> | ||
|
||
<div class="callout icon"> | ||
<a href="{{< relurl "tools/guis">}}"> | ||
<img alt="Desktop icon" aria-hidden="true" src="{{< relurl "images/icons/fa-desktop.svg">}}" > | ||
<h3> GUIs </h3> | ||
</a> | ||
|
||
<p> | ||
Graphical user interfaces and editor integrations | ||
</p> | ||
</div> | ||
|
||
<div class="callout icon"> | ||
<a href="{{< relurl "tools/hosting">}}"> | ||
<img alt="Cloud icon" aria-hidden="true" src="{{< relurl "images/icons/fa-cloud.svg">}}" > | ||
<h3> Hosting </h3> | ||
</a> | ||
|
||
<p> | ||
Git repository hosting | ||
</p> | ||
</div> | ||
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
section: "tools" | ||
subsection: "command-line" | ||
title: "Git - Command Line Tools" | ||
url: /tools/command-line.html | ||
--- | ||
|
||
<div id="main"> | ||
<h1>Command Line Tools</h1> | ||
|
||
<h3>TUIs</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://github.com/jesseduffield/lazygit">lazygit</a></strong>: simple terminal UI for git commands</li> | ||
<li><strong><a href="https://jonas.github.io/tig/">tig</a></strong>: ncurses-based text-mode interface for git</li> | ||
<li><strong><a href="https://github.com/wfxr/forgit">forgit</a></strong>: A utility tool powered by fzf for using git interactively </li> | ||
<li><strong><a href="https://github.com/altsem/gitu">gitu</a></strong>: A TUI Git client inspired by Magit </li> | ||
<li><strong><a href="https://github.com/gitui-org/gitui">gitui</a></strong>: Blazing fast terminal-ui for Git written in Rust</li> | ||
</ul> | ||
|
||
<h3>Manage Git history</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://github.com/tummychow/git-absorb">git-absorb</a></strong>: git commit --fixup, but automatic</li> | ||
<li><strong><a href="https://github.com/newren/git-filter-repo">git-filter-repo</a></strong>: Quickly rewrite git repository history (filter-branch replacement)</li> | ||
<li><strong><a href="https://github.com/mhagger/git-imerge">git-imerge</a></strong>: Incremental merge for Git </li> | ||
<li><strong><a href="https://mergiraf.org/">mergiraf</a></strong>: A syntax-aware git merge driver for a growing collection of programming languages and file formats.</li> | ||
<li><strong><a href="https://github.com/arxanas/git-branchless">git-branchless</a></strong>: Branchless workflow for Git</li> | ||
</ul> | ||
|
||
<h3>Shell prompt integrations</h3> | ||
|
||
These let you put your current Git branch (and more) in your shell prompt: | ||
|
||
<ul> | ||
<li><strong><a href="https://starship.rs/">Starship</a></strong>: The minimal, blazing-fast, and infinitely customizable prompt for any shell!</li> | ||
<li><strong><a href="https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh">git-prompt.sh</a></strong>: Bash prompt that comes with Git</li> | ||
</ul> | ||
|
||
<h3>Manage large files</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://git-annex.branchable.com/">git-annex</a></strong></li> | ||
<li><strong><a href="https://git-lfs.com/">git-lfs</a></strong></li> | ||
</ul> | ||
|
||
<h3>Diff tools</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://dandavison.github.io/delta/">delta</a></strong>: A syntax highlighting pager for Git diffs</li> | ||
<li><strong><a href="https://github.com/Wilfred/difftastic">difftastic</a></strong>: A structural diff that understands syntax</li> | ||
<li><strong><a href="https://github.com/so-fancy/diff-so-fancy">diff-so-fancy</a></strong>: diff-so-fancy strives to make your diffs human readable instead of machine readable</li> | ||
</ul> | ||
|
||
<h3>Manage hooks</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://pre-commit.com/">pre-commit</a></strong>: A framework for managing and maintaining multi-language pre-commit hooks. </li> | ||
<li><strong><a href="https://github.com/evilmartians/lefthook">lefthook</a></strong>: A fast Git hooks manager written in Go </li> | ||
</ul> | ||
|
||
<h3>Collections of Git tools</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://github.com/tj/git-extras">git-extras</a></strong>: Git repo summary, repl, changelog population, author commit percentages and more </li> | ||
<li><strong><a href="https://github.com/nvie/git-toolbelt">git-toolbelt</a></strong>: A suite of useful Git commands that aid with scripting or every day command line usage</li> | ||
</ul> | ||
|
||
<h3>Other</h3> | ||
|
||
<ul> | ||
<li><strong><a href="https://mob.sh/">mob.sh</a></strong>: Fast git handover for remote pair/mob programming. </li> | ||
<li><strong><a href="https://github.com/awslabs/git-secrets">git-secrets</a></strong>: Prevents you from committing secrets and credentials into git repositories </li> | ||
<li><strong><a href="https://commitizen-tools.github.io/commitizen/">Commitizen</a></strong>: Create committing rules for projects, auto bump versions and auto changelog generation</li> | ||
<li><strong><a href="https://github.com/git-town/git-town">git-town</a></strong>: Additional Git commands that automate the creation, synchronization, shipping, and cleanup of Git branches</li> | ||
</ul> | ||
|
||
</div> |
5 changes: 3 additions & 2 deletions
5
content/downloads/guis/_index.html → content/tools/guis/_index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jvns marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
redirect_to: tools/guis?os=android | ||
aliases: | ||
- /download/gui/android | ||
- /download/guis/android | ||
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
redirect_to: tools/guis?os=ios | ||
aliases: | ||
- /download/gui/ios | ||
- /download/guis/ios | ||
--- | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
redirect_to: tools/guis?os=linux | ||
aliases: | ||
- /download/gui/linux | ||
- /download/guis/linux | ||
--- | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
redirect_to: tools/guis?os=mac | ||
aliases: | ||
- /download/gui/mac | ||
- /download/guis/mac | ||
--- | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
redirect_to: tools/guis?os=windows | ||
aliases: | ||
- /download/gui/windows | ||
- /download/guis/windows | ||
--- | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
section: "tools" | ||
subsection: "hosting" | ||
title: "Git - Hosting" | ||
url: /tools/hosting.html | ||
--- | ||
|
||
<div id="main"> | ||
<h1>Git Hosting</h1> | ||
|
||
{{< hosting >}} | ||
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<section id="companies-projects"> | ||
<ul> | ||
{{ $m := slice | ||
(dict "name" "gitlab" "url" "https://gitlab.com") | ||
(dict "name" "github" "url" "https://github.com") | ||
(dict "name" "forgejo" "url" "https://forgejo.org") | ||
(dict "name" "codeberg" "url" "https://codeberg.org") | ||
(dict "name" "sourcehut" "url" "https://sourcehut.org") | ||
(dict "name" "gitea" "url" "https://gitea.com") | ||
(dict "name" "tangled" "url" "https://tangled.org") | ||
(dict "name" "radicle" "url" "https://radicle.xyz") | ||
(dict "name" "gerrit" "url" "https://www.gerritcodereview.com") | ||
(dict "name" "azure-repos" "url" "https://azure.microsoft.com/en-us/products/devops/repos/") | ||
}} | ||
{{ range shuffle $m }} | ||
<li><a href="{{ .url }}">{{ partial "company-svg" (printf "company-project-logos/%s" .name) }}</a></li> | ||
{{ end }} | ||
</ul> | ||
<script type="text/javascript"> | ||
document.getElementById("companies-projects").style.setProperty("--seed", Math.floor(Math.random() * 1000)); | ||
</script> | ||
</section> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.