목록전체 글 (243)
오늘도 한 뼘 더

GitHub 사용하기 github.com/ GitHub: Where the world builds software GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com GitHub 레파지토리에 대한 디렉터리를 생성하는 명령어(origin 원격 저장소가 생성된다.) 방법 : git clone [github주소] 예시 : git clone https://github.com/baekji91..

1. Go 언어 설치하기 golang.org/ The Go Programming Language Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci golang.org Go 언어 페이지로 접속하게 되면 다음과 같은 이미지가 띄게 됩니다. Go 언어를 사용하기 위한 환경을 만들어주는 작업이 완료되게 됩니다. 2. ..

Git 이란? Git이란 소스코드를 효과적으로 관리하기 위해 개발된 '분산형 버전 관리 시스템'이다. Git에서는 소스 코드가 변경된 이력을 쉽게 확인할 수 있고, 특정 시점에 저장된 버전과 비교하거나 특정 시점으로 되돌아갈 수도 있다. 올리려고 하는 파일이 다른 사람이 편집한 내용과 충돌하면 서버에 업로드할 때 경고 메시지가 발생되어 편집한 내용이 덮어지는 일을 방지한다. Git은 개발자라면 사용하게 되는 툴이기 때문에 개념을 정확히 인식하고 있는 것이 좋다. Git 초기 환경 구성하기 [cmd창 또는 git bash를 사용하여 진행한다.] git 초기 설정 git config --global user.name "사용자 이름" git config --global user.email "이메일 주소" "#..