lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 25 Sep 2012 10:54:39 +0200
From:	Borislav Petkov <bp@...en8.de>
To:	Zhi-zhou Zhang <etou.zh@...il.com>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: git pull question

On Tue, Sep 25, 2012 at 04:22:42PM +0800, Zhi-zhou Zhang wrote:
> Hi all,
> 
> Today I update my kernel with git pull. Then a ploblem confused me. I
> got the below message with git status.
> I excuted git checkout master -f and git reset --hard master. The
> ploblem is still there. So anyone please help me
> to find what's the matter?
> 
>  # On branch master
> # Changes not staged for commit:
> #   (use "git add <file>..." to update what will be committed)
> #   (use "git checkout -- <file>..." to discard changes in working directory)
> #
> # modified:   include/linux/netfilter/xt_connmark.h
> # modified:   include/linux/netfilter/xt_dscp.h
> # modified:   include/linux/netfilter/xt_mark.h
> # modified:   include/linux/netfilter/xt_rateest.h
> # modified:   include/linux/netfilter/xt_tcpmss.h
> # modified:   include/linux/netfilter_ipv4/ipt_ecn.h
> # modified:   include/linux/netfilter_ipv4/ipt_ttl.h
> # modified:   include/linux/netfilter_ipv6/ip6t_hl.h
> # modified:   net/netfilter/xt_dscp.c
> # modified:   net/netfilter/xt_hl.c
> # modified:   net/netfilter/xt_rateest.c
> # modified:   net/netfilter/xt_tcpmss.c
> #
> no changes added to commit (use "git add" and/or "git commit -a")

do the following:

$ git checkout master	# in case you're not on it
$ git reset --hard
$ git clean -nd		# will show you which files it'll remove, check them
			# before actually removing them

$ git clean -fd		# remove them
$ git pull		# this now should fast-forward your master branch

HTH.

-- 
Regards/Gruss,
    Boris.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ