Subscribe to my newsletter and never miss my upcoming articles
In my last article, I covered the topic of how git works. Today it's about the usage with the command line interface. Why should I use git CLI The most important reason is time-saving. Since you are faster when you use your terminal and write a few s...
Git is a nice version control system. It allows to commit changes in files. Git saves it in a tree system since it uses branches to allow merges. How it works As I said, git uses branches it looks like this There you see that you have the main branc...
If you are using a Linux system you could come to a point where you have to use one specific application. For this problem are there a few windows emulators or not emulators. The most known should be wine. What is wine Wine is short for "wine is not...
This article is about the deployment process of my projects. I cover everything from self-hosted servers to hosted by others. Why should I host my projects It should be known that if you want to use some application you have to run it. This is for ba...
This article is about aliases for git. What are git aliases? Aliases are tools to improve your workflow and make your experience easier and more natural. They are not really complex and if you work with them regularly you can see that you are faster....
This article is about my first steps and recommendations to start development with Linux. I use ubuntu but I hope that my research is right and the commands are also available in other distros. I use here apt-get/apt install commands. They work only ...