19 lines
758 B
Markdown
19 lines
758 B
Markdown
Today I learned. This page is for, yeah, I guess things I learn every day. It's not going to be updated EVERY day but I'll try and put some interesting things in here.
|
|
|
|
#### 10-22-2024
|
|
TIL about some [basic puppet commands](https://www.puppet.com/docs/puppet/7/modules_installing.html).
|
|
ALSO how to upgrade Quartz, completely mess up the stylesheets and then roll back to a git commit from before the upgrade. Pretty fancy. It went kinda like this:
|
|
|
|
```zsh
|
|
$ git reset head [hash of commit from right before upgrading]
|
|
|
|
$ git branch rollback
|
|
|
|
$ git checkout rollback
|
|
|
|
$ git push --set-upstream origin rollback
|
|
|
|
|
|
```
|
|
|
|
And then from there I just run a script that deploys from whichever branch I give it. I can figure out how to swap it back into main later. |