Sep 5, 2024
git --version
git config --global user.name "Your Name"
git config --global user.email "YourEmail@example.com"
git config --global --list
cd
command to change directories in Command Line or Terminal.cmd
and press Enter.git init
..git
folder will be created, which is hidden by default.git status
shows untracked files or changes.git add filename
or git add .
to add all changes.git commit -m "Your commit message"
.git push -u origin master
or git push -u <repository-url> master
readme.txt
and commit messages are present.