Learn regular GIT commands for DevOps Engineer
1. git init: Initializes a new Git repository in the current directory. 2. git add : Adds changes in a specified file to the staging area for the next commit. 3. git commit -m “message”: Records staged changes with a descriptive message. 4. git status: Displays the current state of the working directory and staging […]