Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
git request-pull можно прочитать.сделав пул, коммит и пуш — ничего в репозитории не изменитсяА зачем вносить пустой коммит? Вы что-то другое хотели сказать, наверное.
*
!.gitignore
!foo/bar
# И так еще тысячи строк?
or run the git request-pull command and e-mail the output to the project maintainer manually.Представил, как в команде разработчиков кто-то сидит и апплаит патчи.
cache/*avatars/*.sass-cachecache/
avatars/
.sass-cache
git clean -df и git stash -u будут удалять Ваши папки.*
!.gitignore
!*.py
!*.html
.ipr file based format
Share the project .ipr file and and all the .iml module files, don't share the .iws file as it stores user specific settings.
.idea directory based format
Share all the files under .idea directory in the project root except the workspace.xml and tasks.xml files which store user specific settings, also share all the .iml module files.
.idea была добавлена по ошибке. Хуков для предотвращения добавления .project, .nbproject, .idea и прочего в репозиториях я не делал, считая инструктаж достаточной мерой.$ find . -iname .gitignore
git config --global core.excludesfile ~/.gitexcludesgit config --global core.excludesfile %userpath%/.gitexcludes
Правильные способы исключения файлов в Git