🌱 planting ideas 🌱

Git clone into non-empty directory

1
2
3
4
5
6
7
8
9
cd nonemptydir
git init
git remote add origin https:path/to/the/repository.git
git pull origin master --allow-unrelated-histories
stree . // To view the repo
git add -A
git commit -m 'first commit'
git push -u origin master