Day 4: Git Zero To Hero ๐Ÿš€

ยท

1 min read


Chaliye Shuru Karte Hai Comicverse GIF - Chaliye Shuru Karte Hai Comicverse  Masster K - Discover & Share GIFs

Before Jumping into git let get familiar with basics of linux ๐Ÿ˜„

Commands:

# Present working directory
pwd
# List the contents in the respective directory
ls -l #l = list
ls -a #a = hidden files
#change directory
cd directory_to_move_into
#make directory/folder of respective name 
mkdir foldername
# create file
touch filename
#remove the respective file
rm filename_to_remove
#remove empty folder
rmdir folder_name
#remove folder which contains content inside the folder
rm -R folder_name_to_remove #here -R refers to recursive
#copy the file from source to destination
cp source destination
#rename/move file
mv source destination

Yes , that's all ๐Ÿ˜Ž

Next Blog Teaser ๐Ÿ˜„

Let's start git ...

Thanks for reading ๐Ÿ™๐Ÿงก

ย