this post was submitted on 14 Oct 2023
0 points (NaN% liked)

Programming

16971 readers
228 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
0
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

I'm doing a solo coding project for work. It's a tool that you interact with similar to npm or cargo, where you can create a new workspace, run / test etc. Importantly, you have to be in the working directory for the commands to work...

Yesterday I decided to go home early to do remote work at home. Before i left i quickly did git add ., committed and pushed. I turned on my computer this morning, ran git pull, and noticed that... only some files got pushed, but more importantly none of the code i wrote yesterday made it through. Yup, I was still cd'd into my workspace folder and not at the project root, so I only committed the mock workspace folder πŸ˜„

Luckily i didnt write or change much this time, but lesson learned: git add -A or git commit -am '...'

top 3 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 11 months ago

I always do a git status just to be sure before a commit

[–] [email protected] 0 points 11 months ago (1 children)

Can't you ssh into your work computer?

[–] [email protected] 1 points 11 months ago

In my 20 year career, I’ve never had a single position where I could ssh into my work machine from a remote location.

I would say that if you have been able to do that, it’s exceptionally rare, and there are a number of security red flags of your organization is allowing that.