Last active
November 7, 2019 11:14
-
-
Save kerkenit/f1569aa9cb16f08f260b0564995ebf52 to your computer and use it in GitHub Desktop.
Add 150 times the last 250 files to GitHub
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
#!/bin/bash | |
for n in {1..150}; do tac .gitignore | sed "1,250d" | tac | tee .gitignore2 && mv .gitignore2 .gitignore && git add --all && git commit -m "Old checkin" && git push ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment