Git常用命令

1.初始化git,创建本地git项目

  git init

2.查看当前信息

  git config user.name

  git config user.email

  git branch //查看分支

    git branch -a //查看远程仓库分支

  git --version  //查看当前版本

  git remote -v  //查看当前项目远程仓库的地址

3.克隆项目:git clone url 

  git clone https://gitee.com/TwoBamboo/productionTest.git

4.项目提交更改

  git status  //查看当前状态:可显示需要提交的内容

  git add .  //添加所有内容至暂存区

  git commit -m '填写提交信息'  *无法提交:git commit -am '填写提交信息'

  git push   *一般只推送当前分支项目

    git push -u origin develop   //推送至指定develop分支

5.分支

  git checkout -b newbranch develop  //创建基于develop的新分支

    git checkout -b newbranch origin/develop //创建远程仓库基于develop的新分支 

  git checkout newbranch  //切换至newbranch分支

  git merge --no-ff newbranch  //合并分支   

6.删除

  git rm file  //删除指定文件file

  git rm --cached  //清除缓存区

posted @ 2020-04-03 15:14  贰竹  阅读(116)  评论(0编辑  收藏  举报