DEV Community

Discussion on: How do you deal with half-finished projects?

Collapse
 
lionelrowe profile image
lionel-rowe • Edited

(Serious answer)

cd unfinished-project
git init
git add -A
git commit -m"init"
git remote add origin some-github-private-repo
git push origin master
cd ..
rm -rf unfinished-project
Enter fullscreen mode Exit fullscreen mode