Day12: Linux and Git command cheatsheet
Linux Commands:
# To check your present working directory:
pwd
# List all the files or directories
ls
# Lists hidden files or directories:
ls -a
# Long listing format:
ls -l
# Create a new directory:
mkdir <directory_name>
# Multiple directory creation:
mkdir -p A/B/C/D
# Remove directory:
rmdir <directory_name>
# Remove multiple directories:
rm -rf <directory_name>
# Remove files:
rm <file_name>
# change directory:
cd <path_where_to_navigate>
# create an empty file:
touch <file_name>
# Copy file:
cp <source_path> <destination_path>
# Move file:
mv <source_path> <destination_path>
# To write some content inside a file:
echo <some msg> > <file_name>
# Display contents of a file:
cat <file_name>
# show previous commands/operations performed in shell:
history
# To search a word (string in a file):
grep "string" <filename>
# Return the specified number of lines from the top:
head -n #number of line
# Return the specified number of lines from the bottom:
tail -n #number of line
# To show disk space:
df -H
File permissions:
# To change the permission of the file
chmod <permission> <file_name>
eg. chmod 700 a.txt #readwriteexeute to the user only
0 - nothing
4 - only read
2 - only write
1 - only execute
4+1 = 5 read and execute
4+2 = 6 read and write both
4+2+1 = 7 read,write and execute
r -read
w - write
x -execute
u -user
g -group
o -other
# To change file or directory ownership:
chown <user_name> <file_name>
# To change group ownership:
chgrp <group_name> <file_name>
Access Control List:
setfacl and getfacl are used for setting up ACL and showing ACL respectively.
# For check ACL permission:
getfacl <name of file or directory>
# For set ACL permission to user:
setfacl -m u:user:permissions /path_to_file
User management:
# To create a new user :
sudo useradd <user_name>
# To set a password for user:
sudo passwd <user_name>
# To modify a Linux user:
sudo usermod <user_name>
# To delete a Linux user:
sudo userdel <user_name>
# For add group account:
sudo groupadd <group_name>
sudo groupadd <group_name>
Git Commands:
# Initialize an empty git repository: transforms the current directory into a Git list of all remote repositories that are currently connected to your local repository.
git init
# Clone an existing git repository:
git clone <repository_url>
# Add files and Moves changes from the working directory to the staging area:
git add <file_name>
# Add all current directory files to git :
git add .
# Commit all the staged files to git.
git commit -m "commit_message"
# To show the status of your git repository:
git status
Git Branch:
git branch
# Create a new branch:
git branch <branch_name>
# For going to specific branch:
git checkout <branch_name>
# for creating and going to that branch:
git checkout -b <branch_name>
# For deleting branch:
git checkout -d <branch_name>
Remote origin:
# list of all remote repositories that are currently connected to local repository:
git remote -v
# To add remote origin URL:
git remote add origin <remote_git_url>
# To remove remote origin URL:
git remote remove origin
# To upload local repository content to a remote repository:
git push origin <branch_name>
# To pull your remote repository content to local repository:
git pull origin <branch_name>
# To fetch down all the branches from that Git remote:
git fetch
# To check your git commits and all logs:
git log
git configuration:
# To set author name to be used for all commits by the current user :
git config --global user.name <your_username>
# To set author email to be used for all commits by the current user:
git config --global user.email <your_email>
# to merge two branches in Git:
COPY
git merge <branch_name>
Cherry-pick:
# Merge just one specific commit from another branch to your current branch:
git cherry-pick [commit_id]
git revert:
# Undo a single given commit, without modifying commits that come after it:
git revert <commit_id>
git reset:
# Go back to specific commit:
git reset <commit_id>
git rebase:
# To rebase all the commits between another branch and the current branch state:
git rebase <other_branch_name>
Temporary commits:
# To save modified and staged changes:
git stash
# list stack-order of stashed file changes:
git stash list
# write working from top of stash stack:
git stash pop
Linux and Git Interview Questions
What is the boot process in Linux?
How to create zero size file Linux?
What is soft link and hard link? How to create? What is the difference between these two?
What is first line written in shell script? What is the meaning of that? If I didn’t write that line what will happen? Then how to run the script?
How to run a shell script in background?
What is cron tab? Explain it? How to configure the schedule a job?
How to allow the ports in Linux?
How to troubleshoot the remote server having some issues?
What is ping? Telnet? Curl? Wget?
How to check the services in Linux machine?
How to kill the process in Linux?
What is inode value?
How to check the CPU utilization?
Difference between Top/HTop?
What is a mount? How to create a mount?
How to troubleshoot live logs?
What is sed command?
What is AWK command
What is grep and egrep?
How to list out the only directories in a Linux?
How to check the process in Linux?
How to check the running ports?
How to declare a variable in a shell script?
How to read a command line input in shell script?
What is umask?
How to change file permission in Linux?
How to connect remote servers without a password? How to achieve this?
How to open files in read-only mode in the VI editor?
What is the purpose of export command?
Git Interview questions
What is git?
What is difference between git and GitHub and GitLab?
Are any other version control tools other than git?
What is difference between svn and git?
What is merge conflicts have you faced ever in your experience? if you face ahow you resolve it?
What is git stash?
What is git HEAD?
What is staging area in git?
What is difference between git fetch and pull and clone?
What is difference between git merge and rebase?
What is .gitignore file? What is the purpose of the file?
What is git branch? Have you worked on branches?
How to merge branches?
What is cherry-pick in git?
How to create a git project?
How to check difference in between two files?
How edit the committed message?
How to check the last few commits?
How to delete remote branch and local branch?
How to create local branch?
What is tag? How many types in tag? How we will create tags?
How to roll back committed code.
Git branch strategy
How to check the difference in file between working are and staging area ?