mirror of
https://gitlab.com/lunovox/computing.git
synced 2025-03-15 14:41:20 +00:00
10 lines
254 B
Markdown
10 lines
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
|