All Projects → jhillyerd → Plugin Git

jhillyerd / Plugin Git

Licence: mit
Git plugin for Oh My Fish (similar to oh-my-zsh git)

Programming Languages

shell
77523 projects

Labels

Projects that are alternatives of or similar to Plugin Git

Dotfiles
Config for vim sublime awesome xmonad etc.
Stars: ✭ 140 (-41.67%)
Mutual labels:  fish
Powerline Go
A beautiful and useful low-latency prompt for your shell, written in go
Stars: ✭ 2,299 (+857.92%)
Mutual labels:  fish
Awsm.fish
A curation of prompts, plugins & other resources for Fish. 🐚
Stars: ✭ 2,641 (+1000.42%)
Mutual labels:  fish
Dotfiles
My personal dotfiles.
Stars: ✭ 162 (-32.5%)
Mutual labels:  fish
Powerline
Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications, including zsh, bash, tmux, IPython, Awesome and Qtile.
Stars: ✭ 12,989 (+5312.08%)
Mutual labels:  fish
Dotfiles
My [NeoVim + Tmux + Fish Shell] Setup /w install scripts
Stars: ✭ 180 (-25%)
Mutual labels:  fish
Packages Main
Primary Oh My Fish package repository.
Stars: ✭ 138 (-42.5%)
Mutual labels:  fish
Replay.fish
Run Bash commands replaying changes in Fish. 🍤
Stars: ✭ 230 (-4.17%)
Mutual labels:  fish
Plugin Nvm
Node version manager wrapper for Fish shell
Stars: ✭ 173 (-27.92%)
Mutual labels:  fish
Zoxide
A smarter cd command. Supports all major shells.
Stars: ✭ 4,422 (+1742.5%)
Mutual labels:  fish
Z.lua
⚡ A new cd command that helps you navigate faster by learning your habits.
Stars: ✭ 2,164 (+801.67%)
Mutual labels:  fish
Dotfiles
💻 macOS System Configuration with Fish, Package Control, VS Code, Repo management, Hammerspoon
Stars: ✭ 168 (-30%)
Mutual labels:  fish
Gitmux
💻 Git in your tmux status bar
Stars: ✭ 180 (-25%)
Mutual labels:  fish
Gh
Easily manage your local git repos
Stars: ✭ 156 (-35%)
Mutual labels:  fish
Pisces
♓️ Fish shell plugin that helps you to work with paired symbols in the command line
Stars: ✭ 210 (-12.5%)
Mutual labels:  fish
Sdkman For Fish
Adds support for SDKMAN! to fish
Stars: ✭ 139 (-42.08%)
Mutual labels:  fish
Kafkactl
Command Line Tool for managing Apache Kafka
Stars: ✭ 177 (-26.25%)
Mutual labels:  fish
Silver
A cross-shell customizable powerline-like prompt with icons
Stars: ✭ 238 (-0.83%)
Mutual labels:  fish
Spark.fish
▁▂▄▆▇█▇▆▄▂▁
Stars: ✭ 229 (-4.58%)
Mutual labels:  fish
Shellder
🐚 Featured zsh/fish shell theme
Stars: ✭ 192 (-20%)
Mutual labels:  fish

git

A git aliases plugin for Oh My Fish and Fisher based loosely on the Oh My Zsh Git Plugin.

MIT License Fish Shell Version Oh My Fish Framework


Install

oh-my-fish:

$ omf install https://github.com/jhillyerd/plugin-git

fisher:

$ fisher install jhillyerd/plugin-git

Usage

Bisect

Abbreviation Command
gbs git bisect
gbsb git bisect bad
gbsg git bisect good
gbsr git bisect reset
gbss git bisect start

Branch

Abbreviation Command
gb git branch -vv
gba git branch -a -v
gban git branch -a -v --no-merged
gbd git branch -d
gbD git branch -D
gbda delete all branches merged in current HEAD
gbage list local branches and display their age
ggsup git set upstream to origin/current-branch
grename rename old branch to new, including in origin remote

Checkout

Abbreviation Command
gco git checkout
gcod git checkout develop
gcom git checkout master
gcb git checkout -b

Commit

Abbreviation Command
gc git commit -v
gc! git commit -v --amend
gcn! git commit -v --no-edit --amend
gca git commit -v -a
gca! git commit -v -a --amend
gcan! git commit -v -a --no-edit --amend
gcv git commit -v --no-verify
gcav git commit -a -v --no-verify
gcav! git commit -a -v --no-verify --amend
gcm git commit -m
gcam git commit -a -m
gscam git commit -S -a -m
gcfx git commit --fixup

Diff

Abbreviation Command
gd git diff
gdca git diff --cached
gds git diff --stat
gdsc git diff --stat --cached
gdt list changed files
gdw git diff --word-diff
gdwc git diff --word-diff --cached
gdv pipe git diff to view command

Flow

Abbreviation Command
gfb git flow bugfix
gff git flow feature
gfr git flow release
gfh git flow hotfix
gfs git flow support
gfbs git flow bugfix start
gffs git flow feature start
gfrs git flow release start
gfhs git flow hotfix start
gfss git flow support start
gfbt git flow bugfix track
gfft git flow feature track
gfrt git flow release track
gfht git flow hotfix track
gfst git flow support track
gfp git flow publish

Log

Abbreviation Command
gcount git shortlog -sn
glg git log --stat --max-count=10
glgg git log --graph --max-count=10
glgga git log --graph --decorate --all
glo git log --oneline --decorate --color
gloo git log --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=short
glog git log --oneline --decorate --color --graph
glom git log --oneline --decorate --color master..
glod git log --oneline --decorate --color develop..
glp git log at requested pretty level
gwch git whatchanged -p --abbrev-commit --pretty=medium

Push & Pull

Abbreviation Command
gl git pull
ggl pull origin current-branch
gup git pull --rebase
glr git pull --rebase
gp git push
gp! git push --force-with-lease
gpo git push origin
gpo! git push --force-with-lease origin
gpv git push --no-verify
gpv! git push --no-verify --force-with-lease
ggp push origin current-branch
ggp! ggp --force-with-lease
gpu ggp --set-upstream
gpoat push all + tags to origin
ggpnp pull & push origin current-branch

Rebase

Abbreviation Command
grb git rebase
grba git rebase --abort
grbc git rebase --continue
grbi git rebase --interactive
grbm git rebase master
grbmi git rebase master --interactive
grbmia git rebase master --interactive --autosquash
grbd git rebase develop
grbdd git rebase develop --interactive
grbdia git rebase develop --interactive --autosquash
grbs git rebase --skip
ggu fetch & rebase current-branch on top of the upstream branch

Remote

Abbreviation Command
gr git remote -vv
gra git remote add
grmv git remote rename
grrm git remote remove
grset git remote set-url
grup git remote update
grv git remote -v

Stash & Work in Progress

Abbreviation Command
gsta git stash
gstd git stash drop
gstp git stash pop
gsts git stash show --text
gwip commit a work-in-progress branch
gunwip uncommit the work-in-progress branch

Tags

Abbreviation Command
gts git tag -s
gtv `git tag
gtl list tags matching prefix

Local Files

Abbreviation Command
ga git add
gaa git add --all
gapa git add --patch
grm git rm
grmc git rm --cached
grs git restore
grss git restore --source

Everything Else

Abbreviation Command
g git
gap git apply
gbl git blame -b -w
gcf git config --list
gcl git clone
gclean git clean -di
gclean! git clean -dfx
gclean!! git reset --hard; and git clean -dfx
gcp git cherry-pick
gcpa git cherry-pick --abort
gcpc git cherry-pick --continue
gignore git update-index --assume-unchanged
gignored list temporarily ignored files
gf git fetch
gfa git fetch --all --prune
gfm git fetch origin master --prune; and git merge FETCH_HEAD
gfo git fetch origin
gm git merge
gmt git mergetool --no-prompt
grev git revert
grh git reset HEAD
grhh git reset HEAD --hard
grt cd into the top of the current repository or submodule
gsh git show
gsd git svn dcommit
gsr git svn rebase
gss git status -s
gst git status
gsu git submodule update
gsur git submodule update --recursive
gsuri git submodule update --recursive --init
gsw git switch
gswc git switch --create
gunignore git update-index --no-assume-unchanged

License

MIT © James Hillyerd et al

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].