github.com/taemin-kwon93 Github 보러가기 ->

Study/Today i learned

22.08.17 깃허브 사용했던 명령어 모음

태민Kwon 2022. 8. 17. 10:07
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