형상관리 썸네일형 리스트형 readme.md 예시 출처: https://gitlab.com/byiringiro/readme-template/-/blob/master/README.md?ref_type=heads&plain=0 Microverse README Template # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) -.. 더보기 GIT 특정 HEAD 이동 (commit, push 되돌리기) git commit 되돌리기 push를 되돌리고자 한다면 이 방법으로 commit을 먼저 되돌리고 되돌린 commit을 push한다. git reflog 3e37211 (HEAD -> master, origin/master, ncloud/master, ncloud/HEAD) HEAD@{0}: commit: 결재화면의 팝업모드와 일반모드를 구분지을 구분자 설정 9d94bc5 HEAD@{1}: commit: 2022.02.15 경영관리부 요청사항 efc6dd9 HEAD@{2}: commit: 2022.02.15 경영관리부 요청사항 6156685 HEAD@{3}: commit: 관리권한이 있는 부서장의경우 부서장권한이 먼저 들어가 관리자권한으로 전직원이 보이지 않는 문제 해결 ddf5e66 HEAD@{4}: .. 더보기 [GIT] .gitignore파일 Repository에 적용 GIT을 처음 세팅하면 하는일중에 하나는 .gitignore파일을 작성하는 것이다. 1. ".gitignore" 파일이란? .gitignore파일은 해석그대로 GIT에서 .gitignore파일에 정의된 규칙의 파일들은 작업에서 배제시키는 역할을 가진다. 이게 왜 필요하냐면 프로젝트나 IDE설정, 잠깐 만들어놓은 임시파일 같은 경우에는 commit, push를 하면 안된다. 따라서 stage에 add할때 제외되어야 하는데, 이 규칙을 정의해 놓은것이 .gitignore파일이다. Java의 예를 들어보면, 1. eclipse를 사용하면 .project파일 과같은 사용자 종속적인 파일들 2. intellij를 사용하면 .idea같은 프로젝트 설정파일 3. Java가 컴파일되어 나온 class 파일들 4. 파일.. 더보기 이전 1 다음