computing/README.md

10 lines
254 B
Markdown
Raw Normal View History

2024-11-18 10:30:20 -03:00
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