This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
download zen and extract in ~ | |
nano ~/.local/share/applications/zen.desktop | |
[Desktop Entry] | |
Version=1.0 | |
Name=Zen Browser | |
Comment=Experience tranquillity while browsing the web without people tracking you! | |
GenericName=Web Browser | |
Keywords=Internet;WWW;Browser;Web;Explorer | |
Exec=/home/abhitruechamp/zen/zen | |
Terminal=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Your Name" | |
git config --global user.email "[email protected]" | |
git config --global init.defaultBranch main | |
ssh-keygen -t ed25519 -C <youremail> | |
cat ~/.ssh/id_ed25519.pub | |
#copy the whole output | |
#Add SSH key to github [https://github.com/settings/keys] | |
existing: | |
git clone [email protected]:USER-NAME/REPOSITORY-NAME.git | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch <branch_name> -> Create branchname | |
git checkout <branch_name> -> Checkout branchname | |
git branch -> list branches | |
git merge <branch_name> -> Merge branch with main | |
git branch -d <branch_name> -> Delete branched merged into main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Your Name" | |
git config --global user.email "[email protected]" | |
git config --global init.defaultBranch main | |
ssh-keygen -t ed25519 -C <youremail> | |
cat ~/.ssh/id_ed25519.pub | |
#copy the whole output | |
#Add SSH key to github [https://github.com/settings/keys] | |
#Copy your repo's SSH url. | |
git clone [email protected]:USER-NAME/REPOSITORY-NAME.git |