Showing posts with label Git. Show all posts
Showing posts with label Git. Show all posts

Wednesday, 22 January 2025

undefined undefined

Git commands

Git commands : 1. Git configuration :git config --global user.name "<Your-Full-Name>" // Sets your name for all Git repositories.git config --global user.email "<your-email-address>" // Sets your email for all Git repositories.2. Git repository management :git init // Initializes a new Git repository in...