про git
All checks were successful
Build MkDocs / build-and-deploy (push) Successful in 14s

This commit is contained in:
Илья Макаров 2025-02-08 14:22:54 +03:00
parent 9abe5b8b05
commit 24a6471850
2 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,16 @@
### Полезные источники
- [**Стетейки по гиту**](https://kb.tishenko.dev/git/aliases/)
- [**GitHowTo**](https://githowto.com/ru)
- [**GitFlow**](https://habr.com/ru/articles/106912/)
- [**Игра**](https://learngitbranching.js.org/?locale=ru_RU)
### Команды
- `git remote -v` - показывает все удалённые репозитории, которые связаны с локальным репозиторием
- `git init ; git remote add origin <https> or <ssh>` - добавить удалённый репозиторий
- `rm -rf /path/to/repo/.git` - git больше не будет отслеживать эту директорию
- `git config --global --list`
- `git config --global user.name "Ваше Имя"`
- `git config --global user.email "ваш_емейл@example.com"`
- `git config ...` - изменить для конкретного репозитория (без флага `--global`)
- `log --pretty=format:'%h %cd | %s%d [%an]' --graph --date=iso` - удобный вывод `git log`

View File

@ -277,9 +277,9 @@
- `/etc/passwd` - инфо о пользователях в системе
- `htop -p ` - процесс на таком-то порту
- `truncate -s 0 /var/log/messages`
---
- `find / -name <pg_config> 2>/dev/null`
---
- `wc -l <file_name>` - количетсво строк в файле
### Диски