"# git-command-practice"
Microsoft Windows [Version 10.0.26200.7019] (c) Microsoft Corporation. All rights reserved.
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>echo "# git-command-practice" >> README.md
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git init Reinitialized existing Git repository in D:/Air-Asia-POC-7-11-2025/git-command-practice-demo/.git/
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git add README.md
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git commit -m "first commit" [master (root-commit) 7a02ae7] first commit 1 file changed, 1 insertion(+) create mode 100644 README.md
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git branch -M main
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git remote add origin https://github.com/RamaGopal-ZapCom/git-command-practice.git
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>git push -u origin main Enumerating objects: 3, done. Counting objects: 100% (3/3), done. Writing objects: 100% (3/3), 246 bytes | 246.00 KiB/s, done. Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) To https://github.com/RamaGopal-ZapCom/git-command-practice.git
- [new branch] main -> main branch 'main' set up to track 'origin/main'.
D:\Air-Asia-POC-7-11-2025\git-command-practice-demo>