일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vasp
- neuron
- skl
- Linux
- GROMACS
- 가우시안
- 국가슈퍼컴퓨팅센터
- TACHYON2
- cuda
- KNL
- KISTI
- SGE
- HPC
- 5호기
- 슈퍼컴퓨팅
- ansys
- nurion
- abaqus
- GPU
- 슈퍼컴퓨터
- openfoam
- G16
- 신바람
- Gaussian
- 뉴론
- 슈퍼컴퓨팅교육
- 누리온
- sinbaram
- Kat
- 타키온2
- Today
- Total
KISTI 슈퍼컴퓨팅 기술 블로그
git 사용 방법 안내 본문
1. 누리온 시스템
누리온 시스템에서는 git이 기본 명령어로 설정되어 있지 않기 때문에, module 환경설정을 이용하여 사용 가능
$ module load git/1.8.3.4 $ git --help usage: git [--version] [--help] [-c name=value] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-objects] [--bare] [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] <command> [<args>] The most commonly used git commands are: add Add file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a branch or paths to the working tree clone Clone a repository into a new directory commit Record changes to the repository diff Show changes between commits, commit and working tree, etc fetch Download objects and refs from another repository grep Print lines matching a pattern init Create an empty Git repository or reinitialize an existing one log Show commit logs merge Join two or more development histories together mv Move or rename a file, a directory, or a symlink pull Fetch from and merge with another repository or a local branch push Update remote refs along with associated objects rebase Forward-port local commits to the updated upstream head reset Reset current HEAD to the specified state rm Remove files from the working tree and from the index show Show various types of objects status Show the working tree status tag Create, list, delete or verify a tag object signed with GPG 'git help -a' and 'git help -g' lists available subcommands and some concept guides. See 'git help <command>' or 'git help <concept>' to read about a specific subcommand or concept. |
2. 뉴론 시스템
뉴론 시스템에서는 git이 기본 명령어로 설정되어 있기 때문에, 별도의 환경설정 없이 사용 가능
$ git --help usage: git [--version] [--help] [-c name=value] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-objects] [--bare] [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] <command> [<args>] The most commonly used git commands are: add Add file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a branch or paths to the working tree clone Clone a repository into a new directory commit Record changes to the repository diff Show changes between commits, commit and working tree, etc fetch Download objects and refs from another repository grep Print lines matching a pattern init Create an empty Git repository or reinitialize an existing one log Show commit logs merge Join two or more development histories together mv Move or rename a file, a directory, or a symlink pull Fetch from and merge with another repository or a local branch push Update remote refs along with associated objects rebase Forward-port local commits to the updated upstream head reset Reset current HEAD to the specified state rm Remove files from the working tree and from the index show Show various types of objects status Show the working tree status tag Create, list, delete or verify a tag object signed with GPG 'git help -a' and 'git help -g' lists available subcommands and some concept guides. See 'git help <command>' or 'git help <concept>' to read about a specific subcommand or concept. |
※ git 사용 방법에 대한 자세한 설명은 git Documentation 문서를 참고해주시기 바랍니다.
'시스템 활용 & 팁' 카테고리의 다른 글
누리온 MVAPICH2/MVAPICH2-X 성능 비교(VASP) (0) | 2020.07.23 |
---|---|
인터렉티브 작업 제출 예제 (0) | 2020.06.12 |
누리온 WRF 멀티노드 활용(SKL) (0) | 2019.10.30 |
누리온 WRF 멀티노드 활용(KNL) (0) | 2019.10.30 |
누리온 VASP 멀티노드 활용(SKL) (0) | 2019.10.30 |