...

Git 수정 파일 업로드 방법 본문

이것저것

Git 수정 파일 업로드 방법

gi2 2022. 5. 20. 20:45

1. Error 해결을 위한 git config --global core.autocrlf true (내 컴퓨터는 windows)

warning: CRLF will be replaced by LF in some/file.file.
The file will have its original line endings in your working directory.

2. git add .

3. git status

4. git commit -m "msg"

5. git push origin master

 

Comments