Blog

Articles in category Git

Context switching in git

2020-03-11 · Git · Thomas Sundberg

It happens that you are working on something and realize that you have to change context. Something urgent popped up and you need to get it into production as soon as possible. However, you have uncommitted changes that doesn't work properly. What do you do now? You can't commit your current changes. They are not done and should not end up in production. And you are smart so you avoid branching. Your current changes are on master and should be on master.

Read more →

Setting execution permission from git

2020-01-31 · Automation DevOps Git Linux · Thomas Sundberg

The execution flag must be set on a file for it to be possible to be executed as a script on a Linux system.

Read more →