Git Introduction and command lines
Steps to create GitHub Repository Create a GitHub Account Create a new Repository on the GitHub Account Create a new Project on Desktop or Laptop Install Git Bash Locate the folder of the project and open Git Bash here Use git init to track the project Use git statu s to check the files which we were about to add. Then use git add . / git add -A to stage all the files in the current branch of the repository. Now use git status to check if all the files are staged. Then use git commit -m "commit-name" to commit the files to the branch of the repository and use git status to confirm there is nothing else to commit. Then use git remote add origin "url" to connect the remote repository. Once the repository is connected, use git push -u origin "branch-name" to push the files in the branch of the repository. Basic Commands git --version - Shows the version of Git. git config - Shows the configuration of Git. git config --global user.name "xxxxxx...