Docker, Github

This commit is contained in:
LeLawnGames
2024-12-11 03:08:08 -05:00
parent d132e33f63
commit 69da5fec22
4 changed files with 76 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
# Git Commands
## Cloning Repository
To clone a git repository (onto one of your devices with ssh key) use git clone and then the ssh url. For example:
```bash
git clone git@github.com:LeLawnGames/mind-palace.git
```
## Saving Changes
To save and push changes back to github you need to do the following:
### Add changed files
```bash
git add . # Adds all changed files
git add syno.md # Adds only the syno.md file
```
### Commit the additions
```bash
git commit -m "Your Commit Message"
```
### Push the changes
```bash
git push
```