Git 동작 방식
1) Git 저장소 만들기
- 기존 디렉토리를 Git 저장소로 만들기
# 폴더로 이동하기
$ cd /c/user/my_project
# .git 폴더 생성 및 git 구조 생성
$ git init
# 파일을 만들기
$ echo "Hello, Git!" > hello.txt
# 커밋 생성하기
$ git commit -m 'initial project version'
- 기존 저장소를 Clone 하기
a. 레포지토리 이름과 동일하게
$ git clone https://github.com/libgit2/libgit2
b. 내가 원하는 이름으로 클론하기
$ git clone https://github.com/libgit2/libgit2 mylibgit
2) 수정하고 저장하기
- 파일의 상태 확인하기
git status
$ git status
# 입력시 출력 내용
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
Git 동작방식 3
# 파일생성
$ echo 'My Project' > README
# 입력시 출력 내용
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
README
nothing added to commit but untracked files present (use "git add"
실습 - 리포지토리 생성하고 commit
- Hello.txt(다른 파일명도 괜찮습니다.) 생성
- git add 파일명
- 위에 파일 수정 후 저장.
- git commit -m “first commit”(메시지 마음대로)
- git add hello.txt
- git commit -m “Modify hello.txt”(메시지 마음대로)
https://github.com/jjiiiwooo/git_practice.git
과제
2차원으로 만들기
class Solution {
public int[][] solution(int[] num_list, int n) {
int[][] answer = new int[num_list.length/n][n];
int cnt = 0;
for(int i = 0 ; i < num_list.length/n ; i++){
for(int j = 0 ; j < n ; j++){
answer[i][j] = num_list[cnt];
cnt++;
}
}
return answer;
}
}
'기타 > 글로컬청년취업사관학교' 카테고리의 다른 글
[글로컬청년취업사관학교][TIL] 240712 (0) | 2024.07.12 |
---|---|
[TIL] 240708 (0) | 2024.07.08 |
[글로컬청년취업사관학교][TIL] 240701 (0) | 2024.07.02 |
[글로컬청년취업사관학교][TIL] 240628 (1) | 2024.06.28 |
[글로벌청년취업사관학교][TIL] 240627 (0) | 2024.06.27 |