Asis Patra

@asispatra

Bengaluru, India

git: Step by Step

by on October 7, 2022 at 6:34 pm

Set Global Git Username and Email

git config --global user.name "Asis Patra"
git config --global user.email "[email protected]"

# Verify
git config --list

Set Git Username and Email for a Single Repository

# First move to git repository directory
git config user.name "Asis Patra"
git config user.email "[email protected]"

# Verify
git config --list

Add and Commit files to a Git Repository

git add --all
git status
git commit -m 'Initial commit of all files to the repository'

Push the Changes to the Remote Repository

git push

Category: Linux

Tags: , , ,

 

Useful FFmpeg Commands

by on October 3, 2022 at 4:56 pm

Convert Video File from MKV to MP4 Split Video  Read More »

Category: FFmpeg

How to setup passwordless SSH [2 Easy Steps]

by on November 17, 2022 at 11:36 am

SSH (Secure SHELL) is an open-source and most trusted network protocol that is used to log in to remote servers for the execution of commands and programs. In this article, we will see that how to set up password-less ssh on Linux using ssh keys to connect to remote Linux servers without entering a password. I have the following […]  Read More »

Category: Linux