Sjmarf@sh.itjust.works to Programmer Humor@programming.dev · 2 days ago.DS_Storesh.itjust.worksimagemessage-square100fedilinkarrow-up11.1Karrow-down13
arrow-up11.1Karrow-down1image.DS_Storesh.itjust.worksSjmarf@sh.itjust.works to Programmer Humor@programming.dev · 2 days agomessage-square100fedilink
minus-squareandioop@programming.devlinkfedilinkEnglisharrow-up5·edit-22 days agogit add . > git commit -m "initial" > git push Later when I git status or just look at the repo online… “oh crap I let .DS_Store in didn’t I…” and then I remember to set up a .gitignore and make a new commit to take out the .DS_Store and put in the .gitignore.
git add .
>git commit -m "initial"
>git push
Later when I
git status
or just look at the repo online… “oh crap I let .DS_Store in didn’t I…” and then I remember to set up a .gitignore and make a new commit to take out the .DS_Store and put in the .gitignore.