github에 커밋 할 수 있음 [중복]

Aug 18 2020

프로젝트를 준비하고 Github에 맡기고 싶습니다. A에는 Git + GitHub 데스크톱이 있으며 VSCode 및 터미널을 사용합니다. 따라서 프로젝트가있는 폴더의 VSCode에서 터미널에서 'git'을 확인하려고하면 문제가 있습니다.

git : The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ git
+ ~~~
    + CategoryInfo          : ObjectNotFound: (git:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

공통 cmd를 사용하면 모두 OK! 어떻게 고칠 수 있습니까?

답변

albeksdurf Aug 18 2020 at 10:18

당신 때문입니다 git실행 파일 ( git.exe) 디렉토리가에서 설정되지 않은 PATH변수 PowerShell을 찾을 수없는, 그래서.

git이 설치된 폴더를 찾아 PATHWindows의 환경 변수 편집기 를 사용하여 추가해야합니다 .

이 답변의 자세한 지침을 참조하십시오 .