| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- java역사
- 데이터전문기관
- web
- 자료구조
- discrete_scatter
- pycharm
- 머신러닝
- mglearn
- 대이터
- KNeighborsClassifier
- 재귀함수
- postorder
- broscoding
- inorder
- web 개발
- Keras
- paragraph
- C언어
- classification
- cudnn
- 웹 용어
- CES 2O21 참여
- web 사진
- bccard
- tensorflow
- 결합전문기관
- web 용어
- vscode
- html
- CES 2O21 참가
- Today
- Total
목록[IT]/git (32)
bro's coding
$ git log log 에서 취소할 시점을 찾는다. $ git revert 명령어를 실행하면 vi 페이지가 뜬다. vi 명령어 :wq 입력 $ git log
저장 했던 위치로 돌아간다. -- hard : 다시 미래시점으로 가지 못한다. $ git reset --hard // : commit code 앞 6자리 $ git log $ git reset a5c911 --hard
git status git add -A git status 왼쪽 상단의 커밋 버튼을 누름 네모칸에 변경된 내용을 설명하고 커밋 버튼을 누름
$ git status git에서 아직 cat과 mouse 파일들을 쳐다보지 않고 있다. (파일들이 만들어졌다의 의미) $ git add -A 이곳의 모든 파일을 git에 넣을 준비 $ git status $ git commit -m "설명" $ git status
$ git status 위 명령어를 통해 관리되고 있는 대상의 상태를 확인한다. PS C:\Users\givemebro\Desktop\test> git status On branch master No commits yet Untracked files: (use "git add ..." to include in what will be committed) cat mouse nothing added to commit but untracked files present (use "git add" to track)
사용자의 이름을 설정한다. $ git config --global user.name"username" 사용자의 이메일 주소를 설정한다. $ git config --global user.email"ad@naver.com"
sourcetree는 git을 이용한 형상관리를 GUI로 이용하게 해주는 서비스이다. Sourcetree | Free Git GUI for Mac and Windows A Git GUI that offers a visual representation of your repositories. Sourcetree is a free Git client for Windows and Mac. www.sourcetreeapp.com ID / PW를 요구하니 계정을 만들기 바란다.