]> git.phdru.name Git - git-wiki.git/blobdiff - pep-git.txt
Fix: lightweight tags can be pushed too
[git-wiki.git] / pep-git.txt
index 6588edac7ffb0321515bb1823e1e5b6b9f91a2c5..8ef719d2ba83a54cb7fe2b72e3731463f87ece50 100644 (file)
@@ -347,8 +347,7 @@ For example::
     $ git fetch origin v1:v1 tag 2.1.7
 
 Git doesn't automatically pushes tags. That allows you to have private
-tags (lightweight tags are also private for a repo, they cannot be
-pushed). To push tags list them explicitly::
+tags. To push tags list them explicitly::
 
     $ git push origin tag 1.4.2
     $ git push origin v1 v2 tag 2.1.7
@@ -614,7 +613,9 @@ For example::
     /readme.txt eol=CRLF
 
 To check what attributes git uses for files use ``git check-attr``
-command.
+command. For example::
+
+$ git check-attr -a -- \*.py
 
 
 Advanced topics