git上傳本地文件到gitlab


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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM