Demo Mode - Try Full Version

Command Categories

All Commands18
File Operations
4
Git Commands
5
Docker
3
Node.js Development
3
System Management
3

High Frequency Commands

ls -la
ls -la /home/userList all files and directories with detailed information
cd ..
cd ../projectsNavigate to parent directory
git status
git status --shortShow the working tree status
git add .
git add . && git commitStage all changes for commit
npm start
npm start -- --port 3000Start the development server

Mid Frequency Commands

docker ps
docker ps -aList all Docker containers
git branch
git branch -aList all local and remote branches
npm install
npm install --save-devInstall packages from package.json
chmod 755
chmod 755 script.shChange file permissions to executable
cp -r
cp -r source/ destination/Copy directory recursively
docker build
docker build -t myapp .Build Docker image from Dockerfile
git merge
git merge feature-branchMerge branch into current branch

Low Frequency Commands

find . -name
find . -name '*.js'Search for files by name pattern
docker-compose up
docker-compose up -dStart services defined in docker-compose.yml
systemctl status
systemctl status nginxCheck service status
npm run build
npm run build:prodBuild application for production
git rebase
git rebase -i HEAD~3Rebase commits interactively
tar -xzf
tar -xzf archive.tar.gzExtract compressed tar archive