欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gitlab常用命令简介 git 

程序员文章站 2022-03-08 12:02:46
...
1.点击Git Bash Here ,进行全局配置
ssh-keygen -t rsa -C "mahone@qq.com"(/c/Users/Lenovo/.ssh/id_rsa)
git config --global user.name "mahone"
git config --global user.email "mahone@qq.com"

2.获取代码
git clone http://it.qq.com/mecapp/mec-app-h5.git
指定分支输入命令:git clone -b 分支名+地址;

3.文件上传
git init(初始化git仓库,非必须)
ls -a
git remote add origin http://it.qq.com/mecapp/mec-app-h5.git
git add . 添加所有文件到暂存区
git commit -m "Initial commit"
git push
git push -u origin master
git push origin :分支名 删除远程分支(注:origin后有空格)
git push origin --delete develop
4.修改远程仓库
git remote rm origin 先删除本地项目连接的远程仓库
git remote -v 就已经没有任何东西了
5.分支获取
git fetch origin hxh:hxh
6.本地创建
git branch 查看本地所有分支
git branch -r 查看远程所有分支
git branch -a 查看本地及远程所有分支
git branch hhh //新建分支hhh
git checkout hxh
git checkout -b dev 本地创建/切换dev分支
git pull 拉取远程代码
git pull origin dev拉取远程dev分支
git merge hxh --no-ff 将hxh合并到dev分支
git log

-----------------------日常更新------------------
git init
git remote add origin http://it.qq.com/mecapp/mec-app-h5.git
git pull origin master
git add .
git commit -m 'update'
git push origin master
相关标签: git