Git Tricks & Hacks To Be More Productive That Will Save Your Time
I am Developer from Kashmir
Search for a command to run...
I am Developer from Kashmir
No comments yet. Be the first to comment.
As a regular user of WhatsApp, I've encountered my fair share of frustrations with its updates and status feature. From constant notifications to intrusive status updates, it seemed like I couldn't catch a break. On top of that, the temptation to res...

Speedtest.net is a popular online service that lets you test the speed and performance of your internet connection. It's been on my mind for a while to see if these speed tests are accurate! I even considered creating my own speed test app for a proj...
As a software developer, one of the most important decisions you will make when starting a new project is the choice of programming language. There are many factors to consider when making this choice, such as the popularity of the language, the size...

Yes, you heard it right! You can learn AJAX in 5 mins provided you have little concept of JavaScript and jQuery. The method I am sharing with you right now will probably boot your AJAX skills. Just for the record: AJAX is a developerβs dream because ...

With lots of programming language out there everyone here is getting confused about what to follow and what not to. All programming languages having their own limitations and their own pros and cons. At the beginning of this article, I will say tha...

Open Source is the future that needs git skills and every modern IT companies needs collaborative work and Continuous Integration (CI) you will need git CLI skills there as well.
Today we will learn to be more productive in terms of git CLI commands.
git checkout some-other-branch -- yarn.lock
git log --oneline --no-merges`
git commit -v --amend`
git clean -f -d
git log --pretty=oneline --graph --decorate --all
git shortlog <commit>..HEAD
git log --since='FEB 10 2016' --until='FEB 19 2016'
git config -l | grep alias | sed 's/^alias\.//g'
git log -S"config. menu_items"
git help -gWhat Do you think? Add yours in replies.