computing/README.md
2024-11-18 10:30:20 -03:00

10 lines
No EOL
254 B
Markdown

cd repository
git checkout --orphan orphan_name
git rm -rf .
rm '.gitignore'
echo "#Title of Readme" > README.md
git add README.md
git commit -a -m "Initial Commit"
git push origin orphan_name
# fonte: https://gist.github.com/seanbuscay/5877413