https://www.conventionalcommits.org/en/v1.0.0/
https://www.markdownguide.org/cheat-sheet/
git config --global user.name 'Username' git config --global user.email 'Mailid'
git config --global --list
git clone https://github.com/VSanjith-08/Bank-Management.git cd Bank-Management
git status git add filename (or) git add . git status
git reset
git commit -m "filename file added"
git push origin branch_name
git status
git add filename git commit -m "Modified filename file" git push origin main
git pull
git status git add the-name-of-file-deleted git commit -m "deleted filename file" git push origin main
git ls-files
create and add file names to .gitignore file before adding the file to staging area
git rm --cached -r file/folder-name git ls-files
git init git status git add . git commit -m "Created filenames" -- create the branch using github then copy the repo url git remote add origin repo_url git remote -v git branch # If it returns master to display main git push origin main
git branch -M main git branch
git push origin main
git branch -a
git checkout -b branch-name
git diff branch-name
git merge branch-name git push origin main
git stash file_name (or) git stash . git stash pop
git log