git --help
git checkout --help 이런식으로 사용해도 됨.
--help가 가장 자세하고 정확한 설명이 나와있음.
git config user.name
: user 확인하기 현재 계정의 닉네임 확인하기
git config user.email
: user 확인하기 현재 계정의 닉네임 확인하기
git checkout -b feature/actions-test
git checkout -b|-B <new_branch> [<start point>]
Specifying -b causes a new branch to be created as if git-branch(1) were called and then checked out. In this
case you can use the --track or --no-track options, which will be passed to git branch. As a convenience,
--track without -b implies branch creation; see the description of --track below.
git push -u origin 'branch name'
-u, --set-upstream
For every branch that is up to date or successfully pushed, add upstream (tracking) reference, used by
argument-less git-pull(1) and other commands. For more information, see branch.<name>.
merge in git-config(1).
$ git remote -v
원격 저장소 확인
git remote remove origin
해당 원격 저장소의 연결을 제거하기 위해서 git remote remove <name> 옵션을 사용
git remote add origin [저장소 url]
원격 저장소 연결
참조 링크 :
https://ifuwanna.tistory.com/263
'Study > Today i learned' 카테고리의 다른 글
Amazon Athena (2) | 2023.05.08 |
---|---|
You build it, you run it. (클라우드 네이티브 자바를 읽으며 정리하기.) (0) | 2022.06.15 |
AWSOME DAY Online Conference 참여 후기 (0) | 2022.06.09 |
Lambda, DynamoDB 를 사용한 User Create API 구축. (0) | 2022.06.03 |
Difference between Abstract Class and Interface in Java (0) | 2022.03.26 |