美文网首页Git
Git基本命令

Git基本命令

作者: 随心录 | 来源:发表于2018-06-28 09:16 被阅读7次
    1. 了解帮助命令
      • git help : 查看命令
      • git help add :查看git add 命令的具体解释
    2. 仓库初始化
      • git init :创建git ,合适在已存在的项目中追加版本控制
      • git init projectname :创建projectname/.git ,适合在项目开始时加入版本控制
    3. 文件基本操作
      • git add filename/* :添加文件到缓存区
      • git commit -m "message" :将缓存区的文件提交到本地仓库
      • git rm filename :移除文件,缓存区的还在,移除本地仓库中的文件
      • git add -u . :如果之前使用非git命令删除文件,可以使用这个命令把当前目录重新遍历删除
      • git add -A . :如果之前使用非git命令移动文件,可以使用这个命令把当前目录重新遍历移动
      • git reset ect... :版本回退
    4. 查看文件修改
      • git status :查看文件信息
      • git diff :查看修改的文件
    5. 查看提交Log
      • git log :显示提交的信息
    6. 分支操作
      • git branch branchname : 创建分支
      • git branch : 显示分支
      • git branch -r : 查看所有远程分支
      • git branch -d branchname : 删除分支
      • git branch -D branchname : 删除未合并分支
      • git checkout branchname : 切换分支
      • git checkout -- filename : 清理掉最后一次提交内容
      • git checkout -b branchname : 创建新分支并且进入该分支
      • git merge branchname : 合并 branchname 分支到目前所在分支(合并时文件冲突要手动解决)
      • git merge --abort : 清除工作目录和暂存区
      • git merge squash branchname : 将合并的分支改变变成一个 commit
      • git rebase branchname : 将当前分支历史提交合并到 branchname 分支
    7. 远程操作
      • git remote add origin https://github.com/accountname/projectname
      • git remote set-url origin newUrl : 改变 URL
      • git remote rm origin : 删除
      • git remote -v : 查看 URL
      • git fetch origin 远程分支名:本地分支名(自己取个) : 抓取远程分支
      • git pull origin : 和 fetch 类似,但是是取回远程更新和本地合并。相当于先 fetch 再 merge。
      • git push origin feature-branch:feature-branch : 推送本地的feature-branch(冒号前面的)分支到远程origin的feature-branch(冒号后面的)分支(没有会自动创建)
      • git push origin : push 到远程仓库
      • git push origin --delete <BranchName>:删除远程分支

    相关文章

      网友评论

        本文标题:Git基本命令

        本文链接:https://www.haomeiwen.com/subject/hbgwyftx.html