From 329559f564bf526247c2a7d7fcd5fea8344c4571 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Sat, 16 Aug 2025 07:39:51 -0600 Subject: [PATCH] added a cheatsheet for myself lol --- cheatsheet.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cheatsheet.md diff --git a/cheatsheet.md b/cheatsheet.md new file mode 100644 index 0000000..ba33c0d --- /dev/null +++ b/cheatsheet.md @@ -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` +