Git丢弃不要的修改

在项目的某次修改中,可能包括添加、删除、更新了一些文件,结果并不好。这时想要丢弃这些修改。
这些变动包括2中类型:

  • tracked file(s)
  • untracked file(s)

使用git clean来清理untracked files

执行git 命令:

$ git clean -df 

清理tracked files

执行这些命令:

$ git checkout . #本地所有修改的。没有的提交的,都返回到原来的状态

$ git stash	 #把所有没有提交的修改暂存到stash里面。可用git stash pop回复。

$ git reset --hard HASH #返回到某个节点,不保留修改。

$ git reset --soft HASH #返回到某个节点。保留修改

help information

NAME

  • git-clean - Remove untracked files from the working tree

SYNOPSIS

  • git clean [-d] [-f] [-i] [-n] [-q] [-e ] [-x | -X] [–] …​

DESCRIPTION

Cleans the working tree by recursively removing files that are not under version control, starting from the current directory.

Normally, only files unknown to Git are removed, but if the -x option is specified, ignored files are also removed. This can, for example, be useful to remove all build products.

If any optional … arguments are given, only those paths are affected.

OPTIONS

-d
Remove untracked directories in addition to untracked files. If an untracked directory is managed by a different Git repository, it is not removed by default. Use -f option twice if you really want to remove such a directory.

-f
–force
If the Git configuration variable clean.requireForce is not set to false, git clean will refuse to delete files or directories unless given -f, -n or -i. Git will refuse to delete directories with .git sub directory or file unless a second -f is given.

-i
–interactive
Show what would be done and clean files interactively. See “Interactive mode” for details.

-n
–dry-run
Don’t actually remove anything, just show what would be done.

-q
–quiet
Be quiet, only report errors, but not the files that are successfully removed.

-e
–exclude=
In addition to those found in .gitignore (per directory) and $GIT_DIR/info/exclude, also consider these patterns to be in the set of the ignore rules in effect.

-x
Don’t use the standard ignore rules read from .gitignore (per directory) and $GIT_DIR/info/exclude, but do still use the ignore rules given with -e options. This allows removing all untracked files, including build products. This can be used (possibly in conjunction with git reset) to create a pristine working directory to test a clean build.

-X
Remove only files ignored by Git. This may be useful to rebuild everything from scratch, but keep manually created files.

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值