Skip to content
created by tte_773283 at 2023-01-25
last modified by tte_773283 at 2023-06-20
revision: 6

Blame of Git

older newer
DateTime Nickname Rev # Content Comment
2023-01-25T12:25:49 tte_773283 1 0 = Git add git page
2023-01-25T12:25:49 tte_773283 1 1 add git page
2023-01-25T12:25:49 tte_773283 1 2 add git page
2023-01-25T12:25:49 tte_773283 1 3 == command add git page
2023-01-25T12:36:57 tte_773283 2 4 * git clone [[[#!Vim bash add command
2023-01-25T12:36:57 tte_773283 2 5 git clone <your repository url> add command
2023-01-25T12:36:57 tte_773283 2 6 ]]] add command
2023-01-25T12:36:57 tte_773283 2 7 add command
2023-01-25T12:36:57 tte_773283 2 8 * create new branch [[[#!Vim bash add command
2023-01-25T12:36:57 tte_773283 2 9 git branch <branch-name> add command
2023-01-25T12:36:57 tte_773283 2 10 ]]] add command
2023-01-25T12:36:57 tte_773283 2 11 add command
2023-01-25T12:36:57 tte_773283 2 12 * change branch [[[#!Vim bash add command
2023-01-25T12:36:57 tte_773283 2 13 git checkout <branch-name> add command
2023-01-25T12:36:57 tte_773283 2 14 ]]] add command
2023-01-25T12:36:57 tte_773283 2 15 add command
2023-01-25T12:36:57 tte_773283 2 16 * create new branch and change branch [[[#!Vim bash add command
2023-01-25T12:36:57 tte_773283 2 17 git checkout -b <branch-name> add command
2023-01-25T12:36:57 tte_773283 2 18 ]]] add command
2023-01-25T12:36:57 tte_773283 2 19 add command
2023-01-25T12:36:57 tte_773283 2 20 * remove branch [[[#!Vim bash add command
2023-01-25T12:36:57 tte_773283 2 21 git branch -d <branch-name> add command
2023-01-25T12:36:57 tte_773283 2 22 ]]] add command
2023-01-25T12:36:57 tte_773283 2 23 add command
2023-06-20T13:57:32 tte_773283 6 24 * remove branch on origin [[[#!Vim bash modify
2023-06-20T13:57:32 tte_773283 6 25 git push <원격 저장소 이름(ex> origin)> -d <원격 브랜치 이름> modify
2023-06-20T13:57:32 tte_773283 6 26 ]]] modify
2023-06-20T13:57:32 tte_773283 6 27 modify
2023-01-25T12:36:57 tte_773283 2 28 * merge target branch to current branch [[[#!Vim bash add command
2023-01-25T13:27:46 tte_773283 5 29 git merge <target-branch-name> modify
2023-01-25T12:36:57 tte_773283 2 30 ]]] add command
2023-01-25T12:48:21 tte_773283 3 31 add command
2023-01-25T12:48:21 tte_773283 3 32 * show current branch name [[[#!Vim bash add command
2023-01-25T12:49:15 tte_773283 4 33 git branch add command
2023-01-25T12:48:21 tte_773283 3 34 git branch --show-current add command
2023-01-25T12:48:21 tte_773283 3 35 ]]] add command