Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.29 KB

File metadata and controls

37 lines (24 loc) · 1.29 KB

GitHub Copilot CLI – Beginner Workflow

This project demonstrates how a beginner can use GitHub Copilot CLI to translate natural language tasks into shell commands and understand them through interactive explanations.

What this project shows

  • How to describe a task in plain English
  • How GitHub Copilot CLI suggests a relevant shell command
  • How Copilot explains the command step by step
1 2 3

Example

Task: count number of folders

Copilot suggested command: find . -maxdepth 1 -type d | wc -l

How to use

  1. Run the helper script: ./helper.sh
  2. Follow the instructions to use GitHub Copilot CLI interactively

DEV Article

This project is explained in detail here: https://dev.to/arpitjindal01/using-github-copilot-cli-as-a-beginner-to-translate-english-into-shell-commands-3h4e

Key Learning

GitHub Copilot CLI works best as a human-in-the-loop tool, especially for beginners learning command-line concepts.