Created
February 25, 2018 12:33
-
-
Save dashohoxha/8fe4b429e853fe82f4a17d185008bb74 to your computer and use it in GitHub Desktop.
git: recreate repository based on current files
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
cp .git/config /tmp/gitBackup | |
rm -rf .git | |
git init | |
cp /tmp/gitBackup .git/config | |
git remote add origin <url from 1st command> | |
git add . | |
git status | |
git commit -m "rewrite history" | |
git push -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment