Git tips and tricks

use ssh over https on github git remote -v it will look like https://ww.github.com/… change it via git remote set-url origin <link> where link is of type git@github.com:codexetreme/… Generate ssh key rsa - an old algorithm based on the difficulty of factoring large numbers. A key size of at least 2048 bits is recommended for RSA; 4096 bits is better. RSA is getting old and significant advances are being made in factoring. Choosing a different algorithm may be advisable. It is quite possible the RSA algorithm will become practically breakable in the foreseeable future. All SSH clients support this algorithm. ...

3 min · Yashodhan Ghadge

MyRepos

Myrepos Install sudo apt install myrepos You have a lot of version control repositories. Sometimes you want to update them all at once. Or push out all your local changes. You use special command lines in some repositories to implement specific workflows. Myrepos provides a mr command, which is a tool to manage all your version control repositories. getting started All you need to get started is some already checked out repos. These could be using git, or bzr, mercurial or darcs, or many other version control systems. Doesn’t matter, they’re all supported! ...

2 min · Yashodhan Ghadge