![bash를 사용하여 Github에서 새 프로젝트를 빌드하는 방법은 무엇입니까?](https://linux55.com/image/168952/bash%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20Github%EC%97%90%EC%84%9C%20%EC%83%88%20%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%EB%A5%BC%20%EB%B9%8C%EB%93%9C%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
git을 배우려고 합니다. juna.py
새 프로젝트에서 Github에 파일을 넣는 방법은 무엇입니까 ? 저는 우분투에서 일합니다. 나는 노력했다
git init
Reinitialized existing Git repository in /home/jaakko/juna/.git/
(base) jaakko@jaakko-Lenovo-IdeaPad-L340-17IWL:~/juna$ git add juna.py
(base) jaakko@jaakko-Lenovo-IdeaPad-L340-17IWL:~/juna$ git commit
On branch master
nothing to commit, working tree clean
답변1
로컬 브랜치에 파일을 추가하고 커밋할 수 있습니다.
$git remote add origin remote
$ git remote -v
이제 git push 명령을 통해 데이터를 푸시할 수 있습니다.