iMedicum
Мини-лекция для MSK команды. Владислав Лежнев aka LiVsI
$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path]
[--info-path] [-p|--paginate|--no-pager] [--no-replace-objects]
[--bare]
[--git-dir=<path>] [--work-tree=<path>]
[--namespace=<name>] <command> [<args>]
PS: Да, я люблю git command line.
git commit --interactive
еще не все :)
еще не все :)
еще не все :)
Теперь - все
![]() |
![]() |
![]() |
![]() |
И дедке и бабке и внучке с жучкой.И они дружной толпой начинают в нее комитить
git fetch
git merge origin/master
git pull
Пока вы не опубликовали его в origin - он виден только Вам
git push
git pull
git push
git stash
git stash list
git stash apply
git stash pop
git config --global alias.co checkout
git config --global alias.st status
git log --pretty=format:"%an <%aE>" | sort -u | wc -l
git log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
git push origin :BRANCH
git checkout --track origin/BRANCH
git checkout -b BRANCH origin/BRANCH
git tag
git tag -l 'v1.4.2.*'
git tag -a v1.4 -m 'my version 1.4'
git push origin --tags
git tag -d tag_name
git push origin :refs/tags/tag_name
git tag -f tag_name
git push -f origin tag_name
git bisect start;
git bisect bad
git bisect good tag|commit
git bisect bad или git bisect good
git bisect reset