added a cheatsheet for myself lol
Some checks are pending
Build and Push to Docker Hub / Push Docker image to Docker Hub (push) Waiting to run
Build and Push Docker Image / build-and-push (push) Waiting to run

This commit is contained in:
Nicholai 2025-08-16 07:39:51 -06:00
parent 988a8086e9
commit 329559f564

21
cheatsheet.md Normal file
View File

@ -0,0 +1,21 @@
# Nicholai's cheatsheet because he forgets commands:
## Pushing to git:
`git origin add git.biohazardvfx.com`
`git add .` or `git add path/to/file` to select which files to push to git.
`git commit -m "explanation of my sins" --no-verify` to commit the change
`git push origin main`
## Pushing to Docker
`docker login git.biohazardvfx.com`
`docker add . `
`docker build -t git.biohazardvfx.com/biohazardvfx/biohazard-vfx:prod .`
`docker push git.biohazardvfx.com/biohazardvfx/biohazard-vfx:prod`