REST API response format based on some of the best practices
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Enable Turbo Boost on Intel CPUs | |
| [Service] | |
| ExecStart=/bin/sh -c "/usr/sbin/modprobe msr && /root/turbo-boost.sh enable" | |
| RemainAfterExit=yes | |
| [Install] | |
| WantedBy=sysinit.target |
It sometimes happen you need change code on a machine from which you cannot push to the repo.
You’re ready to copy/paste what diff outputs to your local working copy.
You think there must be a better way to proceed and you’re right. It’s a simple 2 steps process:
1. Generate the patch:
git diff > some-changes.patch