Day 4: Git Zero To Hero ๐
Table of contents
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 ๐๐งก
ย