Git分支操作命令:删除与恢复

删除

       git branch -d 名字

       git branch -D 名字 (强制删除)

       删除的时候会显示哈希码

恢复

      git checkouot -b 新名字 哈希码

哈希码

    git reflog

代码

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (ddd)
$ git cbranch -d ddd
git: 'cbranch' is not a git command. See 'git --help'.

The most similar command is
        branch

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (ddd)
$ git checkout master
Switched to branch 'master'
M       "PHP\344\274\232\350\257\235\347\273\203\344\271\240/1.cookie.php"
Your branch is up to date with 'origin/master'.

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (master)
$ git branch -d ddd
Deleted branch ddd (was 1a773de).

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (master)
$ git status
On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   "PHP\344\274\232\350\257\235\347\273\203\344\271\240/1.cookie.php"

no changes added to commit (use "git add" and/or "git commit -a")

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (master)
$ git checkout -d eeee 1a773de
fatal: git checkout: --detach does not take a path argument 'eeee'

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (master)
$ git checkout -b eeee 1a773de
Switched to a new branch 'eeee'
M       "PHP\344\274\232\350\257\235\347\273\203\344\271\240/1.cookie.php"

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (eeee)
$ git status
On branch eeee
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   "PHP\344\274\232\350\257\235\347\273\203\344\271\240/1.cookie.php"

no changes added to commit (use "git add" and/or "git commit -a")

Administrator@Jim MINGW64 /d/phpstudy/PHPTutorial/WWW/PHPCollection (eeee)
$ git reflog
1a773de (HEAD -> eeee, origin/master, master) HEAD@{0}: checkout: moving from master to eeee

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值