JPDev@programming.dev to Programmer Humor@programming.dev · edit-23 months agorm -rf /programming.devimagemessage-square35fedilinkarrow-up1459arrow-down117
arrow-up1442arrow-down1imagerm -rf /programming.devJPDev@programming.dev to Programmer Humor@programming.dev · edit-23 months agomessage-square35fedilink
minus-squareiammike@programming.devlinkfedilinkarrow-up4·3 months agoYou can probably use something like git clean -xdf To get rid of all the artifacts not tracked by git, in this case it’s virtually the same as deleting the repo and re-cloning it. NOTE: Make sure everyhing is staged, otherwise that data is gone
You can probably use something like
To get rid of all the artifacts not tracked by git, in this case it’s virtually the same as deleting the repo and re-cloning it.
NOTE: Make sure everyhing is staged, otherwise that data is gone