반응형
Command line instructions
You can also upload existing files from your computer using the instructions below.
Git global setup
git config --global user.name "yourname"
git config --global user.email "email"
Create a new repository
git clone https://gitlab-----------.git
cd test
git switch -c main
touch README.md
git add README.md
git commit -m "add README"
git push -u origin main
Push an existing folder
cd existing_folder
git init --initial-branch=main
git remote add origin https://gitlab.------/test.git
git add .
git commit -m "Initial commit"
git push -u origin main
Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin https://gitlab.----test.git
git push -u origin --all
git push -u origin --tags
반응형
'개발ETC > GIT' 카테고리의 다른 글
Sourcetree 에서 잘못된 비밀번호로 저장소 접근 안될때 해결방법 (0) | 2023.04.13 |
---|---|
gitlab 에서 개발서버, 운영서버 코드 다르게 유지 하는 방법 (0) | 2019.08.01 |
git에서 프로젝트 별 ignore할 필요가 있는 파일 및 폴더들.. (0) | 2019.01.24 |
Git Push ERROR: Repository not found (0) | 2018.12.06 |
댓글