Friday, October 27, 2017

Different Git client used in Win, Linux and Mac

Hi Friends,

I want to share few common git client list that can be used in different Operating System
  • GitX-dev. Platforms: Mac. ...
  • SourceTree. Platforms: Mac, Windows. ...
  • SmartGit. Platforms: Windows, Mac, Linux. ...
  • GitUp. Platforms: Mac. ...
  • GitKraken. Platforms: Windows, Mac, Linux. Price: Free for non-commercial use.
  • Fork. Platforms: Mac. Price: Free.
  • Cycligent Git Tool. Platforms: Windows, Mac, Linux. Price: Free.

Wednesday, January 25, 2017

Generate and Copy SSH Key

Hi Guys,

I am going to show you how to generate and copy ssh key from the console. For that you should have git bash installed in your Windows machine.

1. Generating RSA key pair run following command

   ssh-keygen -t rsa -C "tapashwani@example.com"

2. To copy RSA public key from the command prompt run following command

   pbcopy < ~/.ssh/id_rsa.pub
OR in Git bash 

   clip < ~/.ssh/id_rsa.pub


3. You can add this public key in your Git setting