git上传本地文件到gitlab

时间:2022-11-07 15:25:18

The repository for this project is empty

If you already have files you can push them using command line instructions below.

Otherwise you can start with adding a README, a LICENSE, or a .gitignore to this project.

You will need to be owner or have the master permission level for the initial push, as the master branch is automatically protected.

You can activate Auto DevOps (Beta) for this project.

It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.

 

Command line instructions

Git global setup
git config --global user.name "qzd"
git config --global user.email "qzd123@163.com"
Create a new repository
git clone ssh://git@192.168.1.245:10022/qzd/web.git
cd web
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder
cd existing_folder
git init
git remote add origin ssh://git@192.168.1.245:10022/qzd/web.git
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository
cd existing_repo
git remote add origin ssh://git@192.168.1.245:10022/qzd/web.git
git push -u origin --all
git push -u origin --tags