Открыть боковую панель
nt_test121
nt_project_9da4a5yt9x4b
Коммиты
d516db9e
Коммит
d516db9e
создал
Фев 05, 2016
по автору
Achilleas Pipinellis
Просмотр файлов
First draft on Git tricks tutorial
[ci skip]
владелец
42e0e357
Изменения
1
Скрыть пробелы
Построчно
Рядом
doc/tutorials/git_tricks.md
0 → 100644
Просмотр файла @
d516db9e
Based on https://gitlab.com/gitlab-org/gitlab-ce/issues/5986 here is an outline.
---
A pack of Git tricks that will leverage your Git-fu.
## Introduction
## Oh-my-zsh Git plugin
-
https://github.com/robbyrussell/oh-my-zsh/wiki/Plugin:git
-
https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh
## Git extras
Enhance Git with more commands
-
https://github.com/tj/git-extras
## Aliases
```
ini
[alias]
lg
=
log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
lol
=
log --graph --decorate --pretty=oneline --abbrev-commit
```
## `.gitconfig` on steroids
-
https://github.com/thoughtbot/dotfiles/blob/master/gitconfig
-
https://github.com/thoughtbot/dotfiles/pull/377
---
1.
Set a global
`.gitignore`
:
```ini
[core]
excludesfile = /home/user/.gitignore
```
1.
Delete local branches that have been removed from remote on fetch/pull:
```ini
[fetch]
prune = true
```
1.
Gives you extra info when using Git submodules:
```ini
[status]
submodulesummary = 1
```
## Misc
1.
Get a list of Git branches, ordered by most recent commit:
```
git for-each-ref --sort=-committerdate refs/heads/
```
1.
`@`
is the same as
`HEAD`
:
```
git show @~3
```
1.
`-`
refers to the branch you were on before the current one.
Use it to checkout the previous branch (
[
source
][
dash
]
):
```sh
% git branch
master
* rs-zenmode-refactor
% git checkout master
% git checkout -
```
1.
Delete local branches which have already been merged into master
(
[
source
][
del-merged
]
):
```
git branch --merged master | grep -v "master" | xargs -n 1 git branch -d
```
1.
Delete all stale tracking branches for a remote:
```
git remote prune origin
```
[
del-merged
]:
http://stevenharman.net/git-clean-delete-already-merged-branches
[
dash
]:
https://twitter.com/holman/status/530490167522779137
Редактирование
Предварительный просмотр
Поддерживает Markdown
0%
Попробовать снова
или
прикрепить новый файл
.
Отмена
You are about to add
0
people
to the discussion. Proceed with caution.
Сначала завершите редактирование этого сообщения!
Отмена
Пожалуйста,
зарегистрируйтесь
или
войдите
чтобы прокомментировать