Search code examples
gitgithubcommandprojectgit-bash

How can i get these Git commands to work?


  1. can anyone help me, I am not able to use git commands (config & add.) SS

As i was trying to upload my project to git hub, using git but i was unable to use these commands (config and add.) as its showing 'config' is not a git command. What is the problem here?


Solution

  • Firstly make sure you followed this steps:

    1 git init 2 git config --global user.name example 3 git config --global user.email [email protected] 4 git add . 5 git status 6 git commit -m "example message"