added more to docs

This commit is contained in:
Nick Leffler 2021-06-23 15:19:40 -04:00
parent 69af3e5ff0
commit 4b0dbf9280
1 changed files with 9 additions and 1 deletions

View File

@ -58,10 +58,18 @@ Now you can do the git stuff
1. I always do a ```git pull``` to make sure the repo is up to date just in-case anyone has made changes
2. ```git add NEW_FILE```
2. ```git add NEW_FILE``` or ```git add .``` if you'd like to add all files with changes
3. ```git commit -m 'ADD INFO HERE OF WHAT WAS CHANGED/ADDED'``` | If you'd like to push some changes, but not run the pipeline you can just add ```[skip ci]``` anywhere in the commit message
4. ```git push```
## Your updates will now be pushed, if there's a pipline it might take a while 10/15mins for the updates to be shown
---
Other useful git stuff
View status of repo (how far ahead/behind from master/main) | ```git status```
View differences | ```git diff```