git clone http://xx.com/xx.git

cd 进项目

git checkout -b main(分支名)

开发。。修改代码

git add .

git commit -m 'init'

git pull origin main(分支名)

git push origin main(分支名)


git使用用户名密码clone的方式:

git clone http://username:password@remote


git config --global user.email "用户名@xihuanwu.com"

git config --global user.name "bjht...r130"


git客户端拉取,推送代码到gitlab

​https://www.jianshu.com/p/75f0005a3a78​