
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
SWGH - Split With Git History. An NPX command which allows you to quickly split a file into a copy of it, retaining its git history.
An minimal NPX command which allows you to quickly & easily clone a file into a copy of it, retaining its git history.
It's most useful when you have a file and you want to break it up into multiple smaller files, retaining the line git history in each of them.
npx swgh <source> <destination>
npx swgh README.md README2.md
npx swgh README.md cloneWithOtherExtension.txt
npx swgh someFolder/someFile.js someOtherFolder/randomSubfolder/halfOfTheFile.ts
Let's assume you have a big file characters.js containing many functions which log a character, and you'd like to split it up into 2 files. One for consonant loggers, one for vowel loggers.
$ git blame characters.js
ca123d function a() { console.log('a') }
b5103d function b() { console.log('b') }
b5103d function c() { console.log('c') }
b5103d function d() { console.log('d') }
ca123d function e() { console.log('e') }
...
Assume that in commit ca123d vowel loggers have been added and in commit b5103d consonant loggers have been added.
$ npx swgh characters.js vowelLoggers.js
The result is characters.js and vowelLoggers.js containing the exact same code with the same git history.
Rename the original file to consonantLoggers.js
mv characters.js consonantLoggers.js
Clean up the files to represent what you initially intended:
$ git blame consonantLoggers.js
b5103d function b() { console.log('b') }
b5103d function c() { console.log('c') }
b5103d function d() { console.log('d') }
...
$ git blame vowelLoggers.js
ca123d function a() { console.log('a') }
ca123d function e() { console.log('e') }
...
Commit your changes
$ git commit -am "Splitted up characters.js into consonantLoggers.js and vowelLoggers.js"
git status should say "nothing to commit, working tree clean"FAQs
SWGH - Split With Git History. An NPX command which allows you to quickly split a file into a copy of it, retaining its git history.
We found that swgh demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.