-
Run
git logto find the commit hash of the commit you want to sign off. -
Use the git rebase -i command to interactively rebase the commit. Replace COMMIT_HASH with the commit hash you identified:
git rebase -i COMMIT_HASH^This will open an editor with a list of commits, starting from the one you specified.
-
In the editor, change the keyword
picktoeditfor the commit you want to sign off, save the changes, and close the editor.
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
| Win32 error code | CONST | Description | |
|---|---|---|---|
| 0x00000000 | ERROR_SUCCESS | The operation completed successfully. | |
| 0x00000000 | NERR_Success | The operation completed successfully. | |
| 0x00000001 | ERROR_INVALID_FUNCTION | Incorrect function. | |
| 0x00000002 | ERROR_FILE_NOT_FOUND | The system cannot find the file specified. | |
| 0x00000003 | ERROR_PATH_NOT_FOUND | The system cannot find the path specified. | |
| 0x00000004 | ERROR_TOO_MANY_OPEN_FILES | The system cannot open the file. | |
| 0x00000005 | ERROR_ACCESS_DENIED | Access is denied. | |
| 0x00000006 | ERROR_INVALID_HANDLE | The handle is invalid. | |
| 0x00000007 | ERROR_ARENA_TRASHED | The storage control blocks were destroyed. |
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
| Windows Registry Editor Version 5.00 | |
| ; 7-Zip Windows 11 Context Menu entries via whitelisted id reuse example by AveYo | |
| ; Add to archive.. only single files (multiple would need a single instance redirect tool) | |
| [-HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
| [HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
| "MuiVerb"="@C:\\Program Files\\7-Zip\\7-zip.dll,-2324" | |
| "Position"="Middle" | |
| "Icon"="C:\\Program Files\\7-Zip\\7-zip.dll,0" |
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
| Write-Host "Checking for Administrator permission..." | |
| if (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| Write-Warning "Insufficient permissions to run this script. Open the PowerShell console as administrator and run this script again." | |
| Break | |
| } else { | |
| Write-Host "Running as administrator — continuing execution..." -ForegroundColor Green | |
| } | |
| $patchfile = $args[0] | |
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
| RAR registration data | |
| WinRAR | |
| Unlimited Company License | |
| UID=4b914fb772c8376bf571 | |
| 6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d | |
| cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717 | |
| 7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565 | |
| b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd | |
| 982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190 | |
| 6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9 |
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
| // Turn off "Sends data to servers when leaving pages" | |
| user_pref("beacon.enabled", false); | |
| // Prevention of some telemetry related to the newtab | |
| user_pref("browser.newtabpage.directory.ping", ""); | |
| user_pref("browser.newtabpage.directory.source", ""); | |
| user_pref("browser.newtabpage.enhanced", false); | |
| // "In the release channels the Mozilla location service is used to help in figuring out regional search defaults." | |
| // Which means sending collectable data |