Ângelo Ocanã

Développement et formation d'applications Web

Git help commands

Modifier
Étiquettes

Enable Auto Complete, Commit with title and description, create alias, navigate history, update fork and more!

Enable Auto Complete while typing git commands on terminal

    wget https://github.com/git/git/blob/master/contrib/completion/git-completion.bash --quiet --show-progress -O ~/git-completion.bash
    echo -e "\nsource ~/git-completion.bash" >> ~/.bash_profile

Commit with title and full description

Set vim as default editor:

    export EDITOR='vim'

Open vim to edit commit message:

    git commit -a

first line is the title third line is the full description

Git Alias

to use ‘git st’

    git config --global alias.st status

All alias

    cat .git/config | grep -A 1 "\[alias\]"

Log

https://git-scm.com/docs/pretty-formats

    git log --pretty='%Cred%h%Creset | %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %C(cyan)[%an]%Creset' --graph --all

Alias log

    git config --global alias.lg "log --pretty='%Cred%h%Creset | %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %C(cyan)[%an]%Creset' --graph --all"

Diff

Words

    git config --global alias.dp 'diff --word-diff --unified=10'

Blocks

    git diff --patience

histogram

    git diff histogram

Verifying commits

    git config --global core.whitespace "blank-at-eol,blank-at-eof,tab-in-indent"

Documenting Commits

    wget http://git.io/validate-commit-msg --show-progress --quiet -O .git/hooks/commit-msg
    chmod a+x .git/hooks/commit-msg

Edit commit not pushed

    git commit --amend

Sync Forked repository

Add the remote, call it “upstream”:

    git remote add upstream https://github.com/whoever/whatever.git

Fetch all the branches of that remote into remote-tracking branches, such as upstream/master:

    git fetch upstream

Make sure that you’re on your master branch:

    git checkout master

Rewrite your master branch so that any commits of yours that aren’t already in upstream/master are replayed on top of that other branch:

    git rebase upstream/master
Étiquettes

Lisez la suite

Voir d'autres messages intéressants >>