VS Code : Automatically Push after Commit

If you want to automatically push to a GitHub repository after commit, Gitlens extension in VS Code has a setting to make this possible. You just change the git.postCommitCommand setting and then when you commit and it pushes simultaneously. Open GitLens Extension Settings. Search for git.postCommitCommand . click on the dropdown menu and change none […]
Clone a Github Repository into a Private One

Let’s say the repository you want to clone is https://github.com/example/public_example.git You want to clone this repository to your local computer and then push it to your private Github repository. First: Now the public repository is cloned to your local computer. This step is important: You need to clean the git init: At this stage, you […]
Running and Automating a Python Application on a Linux Server in 7 Easy Steps

In this post I am going to tell the steps to running and automating a python application on a linux server in detail. We will use Linode for this article, but you can use Digital Ocean or Vultr, too. We will choose Debian Linux Server on Linode, place our Python file to the server, sync […]