This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_posts/2014-01-15-some-useful-git-aliases.md

34 lines
934 B
Markdown
Raw Normal View History

2015-03-16 21:18:03 +00:00
---
2015-09-10 01:45:52 +00:00
nav: blog
2015-03-16 21:18:03 +00:00
title: Some Useful Git Aliases
tags:
2015-06-14 02:27:41 +00:00
- git
2015-03-16 21:18:03 +00:00
---
2015-06-18 00:52:29 +00:00
{% block excerpt %}
Here are some bash aliases that I use and find helpful for quickly writing Git and Git Flow commands.
{% endblock %}
{% block content %}
2015-03-16 21:18:03 +00:00
Here are some bash aliases that I use and find helpful for quickly writing Git and Git Flow commands. These should be placed within your `~/.bashrc` or `~/.bash_profile` file:
2015-06-18 00:52:29 +00:00
alias gi="git init"
alias gcl="git clone"
alias gco="git checkout"
alias gs="git status"
alias ga="git add"
alias gaa="git add --all"
alias gc="git commit"
alias gcm="git commit -m"
alias gca="git commit -am"
alias gm="git merge"
alias gr="git rebase"
alias gps="git push"
alias gpl="git pull"
alias gd="git diff"
alias gl="git log"
alias gfi="git flow init"
alias gff="git flow feature"
alias gfr="git flow release"
alias gfh="git flow hotfix"
{% endblock %}