mirror of
https://gitlab.com/lunovox/computing.git
synced 2025-03-20 08:31:25 +00:00
10 lines
No EOL
254 B
Markdown
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 |