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....

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....

2 min · Yashodhan Ghadge