How to check whether a website link has your URL backlink or not - NodeJs implementation
Introduction I got my seo backlink work done from a freelancer. It was like 300…
July 07, 2020
In this guide, We will learn on how to create some handy command alias.
In previous post Git log commands, we see how we can try various git commit history output.
git log --oneline --graph --decorate
Lets try to create our git command alias, so that we don’t need to type this long command again and again.
Lets create git command alias globally for system.
git config --global alias.nicelog "log --oneline --graph --decorate"
In above command, the keyword alias.
, is a special keyword. Anything after that will become git alias name after the command.
So, we created a git alias with name nicelog
. See, how we can use it.
git nicelog
Now, this will give me output same as if I’m running: git log --oneline --graph --decorate
Open ~/.gitconfig
file in an editor.
You will see a section something like:
[alias]
nicelog = log --oneline --graph --decorate
Just change the command in that file, save it. Exit.
And, now if you run the command. It will reflect the changes you made.
Introduction I got my seo backlink work done from a freelancer. It was like 300…
Introduction I have a host running mysql (not on a container). I have to run an…
Assuming you have a java project and is using Visual Studio Code as IDE. All of…
Introduction In this guide, we will see git basic commands, and fundamentals of…
I have a Java project and dependencies are being managed through maven. I have…
Introduction In our previous post How to configure Grafana on docker, we saw how…
Introduction Strapi is a backend system provides basic crud operations with…
Introduction I had to create many repositories in an Github organization. I…
Introduction I was trying to download some youtube videos for my kids. As I have…
Introduction In this post, we will explore some useful command line options for…
Introduction In this post, we will see how we can apply a patch to Python and…
Introduction We will introduce a Package Manager for Windows: . In automations…