cd /path/to/your/project
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/Nifesimi-p/my-first-project.git
###Push your changes to GitHub git push -u origin main
cd /path/to/new/folder git clone https://github.com/Nifesimi-p/my-first-project.git
cd my-first-project
echo "My programming goals include mastering Git and GitHub for version control, learning a backend framework like FastAPI, building full-stack projects, automating tasks with scripts, deploying applications using AWS, setting up CI/CD pipelines, and gaining expertise in Kubernetes and cloud infrastructure tools like Terraform." > goals.txt
git add goals.txt
git commit -m "Added goals.txt with programming goals"
git push origin main