issues
search
longgun21
/
test
0
stars
0
forks
source link
wow
#1
Open
longgun21
opened
6 years ago
longgun21
commented
6 years ago
wowowow
jooyounghun
commented
6 years ago
test
longgun21
commented
6 years ago
hi
jooyounghun
commented
6 years ago
git init <-- 컴퓨터에서 github의 저장소와 연결할 폴더를 지정.
git config --global user.name "" <-- 내가 누군지 닉네임을 지정.
git config --global user.email "" <-- 내가 누군지 이메일을 지정.
git remote add origin 주소 <-- 주소는 http 어쩌구 저쩌구 하는 거/ 인터넷에서 내 컴퓨터의 폴더와 연결할 repository를 지정
git remote -v <-- 연결이 잘 되었는지 확인.
jooyounghun
commented
6 years ago
git status <-- 빨간색확인 / 빨간색은 인터넷의 repository에 올릴 수 없는 것
git add 파일이름 <-- 빨간색 파일을 올릴 수 있다. 어느정도 치다가 tab 키를 하면 자동 완성 기능.
git status <-- 초록색 확인 / 초록색 파일은 repository에 올릴 준비가 된 파일을 의미.
git commit -m "어떤 파일인지 설명" <-- 마지막으로 올릴 준비.
git push origin master <-- 올린다.
wowowow