Posts

How to use github Gitl

Git global setup git config --global user.name "Nawaraj Luitel" git config --global user.email "luitel.nawaraj12300@gmail.com" Create a new repository git clone git@gitlab.com:nawarajluitel/my_project_123.git cd my_project_123 touch README.md git add README.md git commit -m "add README" git push -u origin master Push an existing folder cd existing_folder git init git remote add origin git@gitlab.com:nawarajluitel/my_project_123.git git add . git commit -m "Initial commit" git push -u origin master Push an existing Git repository cd existing_repo git remote rename origin old-origin git remote add origin git@gitlab.com:nawarajluitel/my_project_123.git git push -u origin --all git push -u origin --tags         …or create a new repository on the command line echo "# Eydean-Intern" >> README.md git init git add README.md git commit -m "first commit" git...
 How to remove application in Ubuntu operating system Using GUI method: step 1: Open Ubuntu Software icon in the Dock or you can search "Ubuntu Software" in the activities bar.  step 2: Once applcation open, click Installed application buttton step 3: Find the applcations that we want to remove by using search box or you can all look through the install applications list.  step 4: Confirm the application you wish to remove step 5: For authenticating operating system may also asked password. Once done correctly, the application is removed.   Using Terminal: step 1: Firstly list all the packages installed on your system using following commands: $ dpkg --list step 2: Use apt-get remove command to remove package: $ sudo apt-get remove package-name