Some usefull tutorials. Feel free to contribute with all you
git config --global core.editor "your-editor"
- Open your
.bashrc
vim ~/.bashrc
- Add the following lines at the end of the file
function git_branch_name() {
git branch 2>/dev/null | grep -e '^*' | sed -E 's/^\* (.+)$/(\1) /'
}
function show_colored_git_branch_in_prompt() {
PS1="\[\033[01;32m\]\u@\h:\[\033[01;34m\]\w\[\033[31m\]\$(git_branch_name)\[\033[m\]$ "
}
show_colored_git_branch_in_prompt
- Open your
.gitconfig
vim ~/.gitconfig
- Add a new session called
[alias]
and add your aliases
[user]
email = user@email.com
name = user
[core]
editor = vim
[alias]
st = status
d = diff
pom = push origin master
- Now you can use your custom commands like this:
# Equivalent to 'git push origin master'
git pom