Skip to content

Instantly share code, notes, and snippets.

@kuflash
Last active July 22, 2017 15:11
Show Gist options
  • Save kuflash/0248abe3ef3d7457c129 to your computer and use it in GitHub Desktop.
Save kuflash/0248abe3ef3d7457c129 to your computer and use it in GitHub Desktop.
GIT Snippets
1. Переключиться на remote ветку:
git fetch
git checkout -b <local-branch-name> <remote-branch-name>
2. Push отдельной папки:
git subtree push --prefix <path/to/folder> <remote-repo> <branch>
3. Поиск коммита по названию:
git log --all --grep=<pattern>
4. Поиск коммита по содержимому
git log -S<text>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment