DEV Community

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

Collapse
 
metalmikester profile image
Michel Renaud

rm -r UnfinishedProject

:)

Collapse
 
bananabrann profile image
Lee

Lol, same...

Collapse
 
pedro2555 profile image
Pedro Rodrigues • Edited

never, ever. Read my post as to why.

Collapse
 
jrodriguez2076 profile image
Jose Rodriguez

This made me chuckle.

Collapse
 
ng_speedster profile image
Yuriy

rm -rf

Collapse
 
johnfromme profile image
John • Edited

I never remove my old or unfinished projects because I still might what some of the code for other projects also doing that is like throwing away hours of your life, at least in my opinion!

Collapse
 
pedro2555 profile image
Pedro Rodrigues

Worse than throwing away. You can't undo it. Totally agree.

Collapse
 
metalmikester profile image
Michel Renaud

I think you missed the smiley. ;)

Thread Thread
 
johnfromme profile image
John

:), is that better? I did not mean to make it sound sarcastic.
Sorry my mistake LOL!

Thread Thread
 
metalmikester profile image
Michel Renaud

I meant mine. Doesn't matter. LOL

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