Hello, I'm new in the list and just trying to get into freeradius. I tried to clone the repository and found this: $ git clone git://git.freeradius.org/freeradius-server.git Cloning into 'freeradius-server'... remote: Counting objects: 81887, done. remote: Compressing objects: 100% (17052/17052), done. remote: Total 81887 (delta 64675), reused 81796 (delta 64618) Receiving objects: 100% (81887/81887), 13.14 MiB | 463 KiB/s, done. Resolving deltas: 100% (64675/64675), done. $ cd freeradius-server $ git status # 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: dialup_admin/htdocs/help/filter_id_help.html # modified: dialup_admin/htdocs/help/framed_protocol_help.html # modified: dialup_admin/htdocs/help/service_type_help.html # modified: raddb/sql/oracle/msqlippool.txt # modified: share/dictionary.freeswitch # modified: src/modules/rlm_ruby/rlm_ruby.c # modified: src/modules/rlm_securid/Makefile # modified: src/modules/rlm_securid/rlm_securid.c # no changes added to commit (use "git add" and/or "git commit -a")
From man gitattributes:
ident When the attribute ident is set for a path, git replaces $Id$ in the blob object with $Id:, followed by the 40-character hexadecimal blob object name, followed by a dollar sign $ upon checkout. Any byte sequence that begins with $Id: and ends with $ in the worktree file is replaced with $Id$ upon check-in And at the end of git diff, there are multiple changes similar to: - * Version: $Id: $ + * Version: $Id$ Sorry if this was already reported.