Add new data

This commit is contained in:
root
2024-03-02 02:54:33 +03:00
parent ed098b2e6c
commit 8c8a39aef2
17 changed files with 112 additions and 18 deletions

26
docs/progs/git.md Normal file
View File

@@ -0,0 +1,26 @@
# GIT
## Remote control
```bash
git remote -v
git remote add origin https://site/repo.git
git remote set-url origin https://site/repo.git
```
## Config ~/.gitconfig
```ini
[user]
email = user@gmail.com
[alias]
aa = !git add -A && git status -v
up = push
st = status -v
sta = status -v
cam = commit -am
last = log -1 HEAD
[safe]
directory = /mnt/data/src
```