Within the final article on this collection, Superior Git Aliases, we took a take a look at some superior aliases for Git. Nonetheless, the true energy of Git aliases comes from writing customized scripts. These mean you can construct Git instructions that may do something you may think about.
On this article, I will present you how one can create script aliases with Git. We’re going to try a number of superior scripts you need to use for Git which might be tremendous helpful and can prevent a bunch of time.
Script Aliases
We’ll be utilizing Bash for our scripts. Bash is an unsightly language, nevertheless it has the advantage of working nearly anyplace. In your personal scripts, you need to use any scripting language you want.
Should you’re not conversant in Bash scripting, do not panic! Whereas among the syntax could look funky, you may largely muddle your method via. (That is not one thing you sometimes hear from a coding article, proper?) I like to recommend studying Study Bash in Y Minutes and rifling via Google or Stack Overflow for something that does not make sense.
Step one is to create a file in your script. I wish to retailer these information in my Dotfile’s bin
listing, however you may put them anyplace you want in your pc. Simply be certain it is someplace straightforward to recollect.
contact bin/git/git-example
Subsequent, you may want so as to add some boilerplate to the highest of your script.
#!/usr/bin/env bash set -euo pipefail
The primary line is named a shebang), and it tells your pc that the file is a script that needs to be run with Bash. This particular runs the script with Bash. To make use of a distinct language, substitute bash
for one thing else, like ruby
or python3
.
The second line tells bash to exit if there are any errors, undefined variables, or errors in a pipeline. I do not know why this is not the default in Bash, however not less than it is simple to arrange with this line.
You might run your script as-is with (bash bin/git/git-example
), however who has time to write down out bash
each time they wish to run one thing? As an alternative, make your script executable.
chmod +x bin/git/git-example
Now you may run your script with out prepending bash
to it (e.g. bin/git/git-example
).
Lastly, you must add your script to Git’s aliases. Substitute the trail in your script under.
[alias] instance = "!$HOME/.dotfiles/bin/git/git-example"
That is it! Now you may run git instance
to run a script that does not do something!
Listing All Branches
By default, while you run git department
, you get the branches you’ve saved regionally. However what if you wish to see all of the branches out there to you? You may obtain this by including the --all
flag to your branches.
git department --all
I wish to bundle this right into a git-branches
script and add a couple of extras to it.
#!/usr/bin/env bash set -euo pipefail # Solely output shade if the command is not being piped. if [ -t 1 ]; then COLOR="at all times" else COLOR="auto" fi git department --all --color="$COLOR" --sort=authordate --format="%(shade:blue)%(authordate:relative);%(shade:purple)%(authorname);%(shade:white)%(shade:daring)%(refname:quick)" "$@" | column -s ";" -t
Remember to save lots of this to a file and make it executable!
This does a number of issues:
- It solely outputs shade when the script is being run instantly from the CLI. This lets you use
git-branches
in different scripts. - It kinds the branches by after they had been authored. This places the latest branches on the backside.
- It means that you can cross extra arguments to the
department
command utilizing the$@
Bash variable. This may are available in helpful within themy-branches
command we’ll add subsequent. - It provides some good formatting to your branches. For instance, this is the reason my
branches
output appears to be like like in my dotfiles repo. This works through the use of a trick with thecolumn
command and changing semicolons within the output so the gadgets line up properly.

Add an alias for this command (and a brief alias when you like brevity).
[alias] branches = "!$HOME/.dotfiles/bin/git/git-branches" bs = branches
You are all set! Now you can run git branches
(or simply git bs
) to see all off of the out there branches.
Listing My Branches
The branches
command you simply added may be very useful, however while you’re working with a big group, it may be a ache to see everybody’s branches. I wish to create a second alias that solely contains my branches. You may simply accomplish this with a brand new script.
#!/usr/bin/env bash set -euo pipefail # Solely output shade if the command is not being piped. if [ -t 1 ]; then COLOR="at all times" else COLOR="auto" fi "$HOME/.dotfiles/bin/git/git-branches" --color="$COLOR" | grep "$(git config person.identify)"
This script runs git-branches
after which pipes the output via grep
to filter it all the way down to the present person’s branches.
Create aliases for each of those instructions.
[alias] my-branches = "!git branches | grep -i '$()'" my-bs = my-branches
You might scale back the quick alias to git mbs
, however I do not as a result of writing git my-bs
makes me smile each time I run it.
Stash Staged
Git has a git stash
command, which is beneficial for setting apart work for later. By default, it solely stashes tracked information. If in case you have new information you wish to stash new information, you must embrace the --include-untracked
flag, or use git stash --all
.
What do you do when you solely wish to stash some of your information? The built-in method to do that is Git funky.
As an example you wish to stash the information apple
and banana
, however hold cherry
and date
. To try this, you add the information you do not wish to stash to the index, after which run git stash --keep-index --include-untracked
.
git add cherry date git stash --keep-index --include-untracked
That is unusual as a result of it is the precise reverse method that git commit
works. Plus, you now have a few information floating round in your index that you will have to run git restore
on.
To repair this, let’s create a git stash-staged
command.
#!/usr/bin/env bash set -euo pipefail git diff --staged --name-only | xargs git stash push "$@" --
That is it! This command makes use of git diff --staged --name-only
to print out a listing of all the information which might be within the index. Then, it pipes these arguments to xargs
. xargs
splits up the arguments by newlines and passes them to git stash --
.
Add your alias, and also you’re executed!
Aliases
You certain have been writing lots of aliases recently. Would not it’s good if there was a command we might run to listing all the aliases you have created? We are able to add an alias for that!
[alias] aliases = "config --get-regexp alias"
That is All For Now!
That is it! Hopefully, you have loved this text, and you may make good use of the aliases right here.
Do you’ve a favourite Git alias? Let me find out about it down within the feedback!

About Landon Schropp
Landon is a developer, designer and entrepreneur primarily based in Kansas Metropolis. He is the creator of the Unraveling Flexbox. He is enthusiastic about constructing easy apps individuals love to make use of.