Blogger Information
Blog 51
fans 0
comment 1
visits 65074
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
GIT命令大全
鱼的熊掌
Original
737 people have browsed it

   

  设置用户信息 
  git config --global user.name "你的名称"
  git config --global user.email "你的邮箱"
  
  初始化
  git init
    
  暂存
  git add "文件/文件夹" 
  
  提交
  git commit -m "描述"
  
  连接远程仓库
  git remote add origin 远程仓库地址
  
  指定远程分支
  git branch --set-upstream-to=远程库/远程分支 修改的分支名
  git branch --set-upstream-to=origin/master aaa
  
  查看当前分支
  git branch -vv
  
  推送
  git push 
  git push origin master  指定分支到远程库分支
  git push -u origin master
    
  拉取
  git pull  
  git pull origin master  初始化空的项目,连接远程库,拉取需要指定分支,或者指定本地到远程的master
  
  指定本地的master到远程的master
  git branch --set-upstream-to=origin/master master

  查看远程仓库信息
  git remote -v
  
  克隆项目
  git clone 项目地址
  
  解决冲突
  git stash

    



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post