Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- html
- jdbc
- Class.forName
- github 커밋하는 방법
- it국비교육 비전공자
- 깃허브로협업
- HTML태그종류
- it국비교육 비전공자 후기
- html태그
- jdbc driver
- Connection
- it국비교육 후기
- Git
- SQL
- html이란?
- github
- DriverManager
- 비전공자 java
- 멀티캠퍼스후기
- 소프트웨어생명주기
Archives
- Today
- Total
이 코드는 뭘까
github 커밋하는 방법 본문
git을 설치한 후 git bash 프로그램 창을 연다
💡git bash
git config — global user.name "lona-log"
git config — global user.email. "a@gmail.com"
git config --list
- name과 email 접속 후 확인
- VS code 에서 github로 올릴 파일을 연다
- Vs code에서 Terminal을 연다
💡VS code Terminal
git init
git add .
git status
git commit -m "first commit"
- github로 이동 후 new repository 생성 후 repo주소복사
💡VS code Terminal
git remote add origin <https://github.com/lona-log/TIL.git>
git remote -v
git push origin master
++ 추가 작성 후 github에 업로드 하는 방법
git add .
git status
git commit -m "second commit"
git push origin master
Comments