GitHub

All posts for GitHub tag.

See all tags

5 reasons You should share Your code

August 22, 2024 by Jesper Nielsen • 8 minutes to read

Have you ever thought of sharing your code on GitHub?

You might think, “No, I am not a programmer”. But you do not need to be a programmer, and if you have written some scripts to automate tasks, solve problems, or create something cool you might be missing an opportunity.

I imagine you have a folder full of scripts that you use for your own purposes, but you never thought of sharing them with anyone else. Or you are hesitant to share your code because you think it is not good enough, or you are afraid of criticism.

Read more

How to Configure Git Username and E-mail address

August 23, 2023 by Jesper Nielsen • 4 minutes to read

Git  is a powerful and popular version control system that allows you to track changes in your code and files, collaborating with other developers and works great with e.g., Visual Studio Code.

One of the benefits of using Git and GitHub, or similar platforms, to version your code, or use Source Control, is that you can easily integrate them with your editor of choice. For example, Visual Studio has a built-in Git support that allows you to perform common Git operations, such as staging, committing, pushing, pulling, branching, and merging, directly from the editor. You can also view the diff between versions, resolve conflicts, and access the command line if needed. This way, you can manage your code without leaving your editor, which can save you time and improve your workflow.

Read more