vault backup: 2023-07-26 19:25:57

This commit is contained in:
fedora_macbookair
2023-07-26 19:25:57 -04:00
parent dd7147b7a6
commit 5612b3b476
6 changed files with 285 additions and 440 deletions

15
Tenmado/Git.md Normal file
View File

@@ -0,0 +1,15 @@
#Public/Notta
## Cheatsheet
**Most use command:**
```bash
git clone url ## Clones a repo
```
**Setting up a new git dev environment:**
Set up global information to *keep stuff organized and see changes made by others:*
```bash
git config --global user.name "username" ## Configures global username
git config --global user.email "email" ## Configures global user email
```