본문 바로가기

카테고리 없음

git 사용

git --version

git config --list

git config --global user.name "name"
git config --global user.email "email@gmail.com"

# repository clone
git clone http://github.com/[내 이름]/[저장소 명].git

# 업로드 가능한 상태 확인
git status

git init

# 업로드 가능하게 만들기
git add .

# commit
git commit -m 커밋 로그

# 최종 업로드
git push 원격저장소주소 현재브랜치


#$ git status
#$ git add 원하는폴더이름
#$ git commit -m "원하는내용"
#$ git remote -v
#$ git push origin master
git init

git add .
git commit -m "log"
git remote add master https:~
git push -u origin master
### or create a new repository on the command line

echo "# " >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https:~
git push -u origin main

### …or push an existing repository from the command line

git remote add origin https:~
git branch -M main
git push -u origin main
반응형