This happens a lot. I will try to write out scenarios I've dealt with.. Here are ways to deal with conflicts Decide to delete the file of conflict from Main…
There are few ways to manage private and public keys for github repositories. When a user has multiple github accounts/repositories using multiple personal and work computers, it's easier to create…
For creating one ssh key for all github repositories, go here Create ssh keys Go to .ssh directory under your user root directory (or anywhere you want to store your…
Source: https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html Here's the cheatsheet and summary of the rust tutorial (source) $ cargo new myproj $ cd myproj $ vi src/main.rs # to edit $ cargo run file: main.rs…
This is my rust installation cheatsheet create a new rust file, compile, and run executablecreate a rust project using Cargo, compile, check and run executable RUST file : manually you…