https://github.com/makelinux/git-wizard
instant git magic and tricks
https://github.com/makelinux/git-wizard
git tricks wizard
Last synced: 6 months ago
JSON representation
instant git magic and tricks
- Host: GitHub
- URL: https://github.com/makelinux/git-wizard
- Owner: makelinux
- License: apache-2.0
- Created: 2020-03-10T11:40:00.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2022-09-17T22:25:51.000Z (about 3 years ago)
- Last Synced: 2025-03-30T15:47:08.435Z (7 months ago)
- Topics: git, tricks, wizard
- Language: Shell
- Homepage:
- Size: 55.7 KB
- Stars: 48
- Watchers: 7
- Forks: 27
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
git-wizard - instant git magic and tricks
=====
An interactive git shell utility for working efficiently.
Vision: collect git tricks, troubleshooting techniques and git wisdom
under one hat and perform them interactively.
Beginners can enjoy learning git functionality interactively.
Experienced command line git users can save time by using the wizard
to perform frequent operations.
For example, when you have a merge conflict the wizard first suggests
that you run mergetool.
.. contents::
:local:
Features
****
Fast
----
* Requires minimal key presses to perform the necessary actions.
* Faster then raw git CLI or GUI for many actions.
Comfortable
----
* Displays improved reports.
* Automatically performs routine tasks.
Smart
----
* Prioritizes issues by their importance.
* Filters unsuitable tasks and proposes to perform suitable ones.
For example, the wizard proposes to stage changes only when
there are changed files.
Details
****
Internal checks
----
Each iteration, the wizard checks whether the repository contains collisions,
operations in progress, conflicts, unmerged files,
changes, stashes, ahead/behind commits, and untracked files.
It performs "git fetch" periodically and automatically.
It pronounces some valuable short messages audibly using the espeak application.
Internal actions
----
The wizard uses following commands under the hood: init, status, add,
commit, mergetool, diff, fetch, push, pull, clone, stash, log, clean,
gui and gitk, espeak.
Report
----
Reports the current status of the repository:
git-wizard report::
root: /home/costa/Dropbox/linux/git-wizard
conflicted files: 0
unmerged files: 0
in progress:
modified files: 2
head: master
local branches: 2
remote branches: 3
stashes: 2
commited: 2 minutes ago
remote: origin
fetch age (min): 6
local commits: 3
remote commits: 0
action itemes: 1
gone branches: 0
untracked files: 3
Other features
----
* Cleans up 'gone' branches and helps to keep your workspace tidy.
To do
****
* Analyze the details of 'in progress' status.
* **You are welcome to request new features and add git tricks**