GIT: заметки
20 июня 2012
Нет комментариев
Объединение бранчей под одним коммитом
git merge --squash branch -m "super commit"
Конфиг ~/.gitconfig
[user]
name = Pavel Sokolov
email = pavel@sokolov.me
[core]
excludesfile = /home/pavel/.gitignore
Глобально игнорируемые файлы: ~/.gitignore
Добавление в конфиг:
git config --global core.excludesfile ~/.gitignore
Исправить сообщение последнего коммита
git commit --amend
http://stackoverflow.com/questions/179123/how-do-i-edit-an-incorrect-commit-message-in-git
Categories: Без рубрики