master에 push하지 마시고 각자 branch를 만드신 후에 branch로 push 해주세요.
master는 공지사항 및 공통사항만 올려놓으려고 합니다.!!
-
git clone [URL] [USED_DIRECTORY]
ex ) $ git clone https://github.com/RH0001/javaStudy hardTest
-
cd [USED_DIRECTORY]
ex ) $ cd hardTest
-
git remote -v
ex ) $ git remote -v
-
git pull
ex ) $ git pull
-
git checkout -b [brenchName]
ex ) $ git checkout -b hard
-
git add [FILE]
ex ) $ git add test.txt
-
git commit -m "[commit message]"
ex ) $ git commit -m "처음 올리는 파일"
-
git push origin [brenchName]
ex ) $ git push origin hard