Skip to content

Commit f5f84c5

Browse files
petksodabrew
authored andcommitted
Remove unused Git attributes ident (#402)
The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
1 parent f4dafd2 commit f5f84c5

5 files changed

+0
-9
lines changed

config.m4

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
dnl
2-
dnl $ Id: $
31
dnl vim:se ts=2 sw=2 et:
42

53
PHP_ARG_ENABLE(memcached, whether to enable memcached support,

config.w32

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// $ Id: $
21
// vim:ft=javascript
32

43
ARG_WITH('memcached', 'libmemcached extension', 'no');

php_memcached.c

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
+----------------------------------------------------------------------+
1515
*/
1616

17-
/* $ Id: $ */
18-
1917
/* TODO
2018
* - set LIBKETAMA_COMPATIBLE as the default?
2119
* - fix unserialize(serialize($memc))

php_memcached.h

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
+----------------------------------------------------------------------+
1515
*/
1616

17-
/* $ Id: $ */
18-
1917
#ifndef PHP_MEMCACHED_H
2018
#define PHP_MEMCACHED_H
2119

php_memcached_private.h

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
+----------------------------------------------------------------------+
1515
*/
1616

17-
/* $ Id: $ */
18-
1917
#ifndef PHP_MEMCACHED_PRIVATE_H
2018
#define PHP_MEMCACHED_PRIVATE_H
2119

0 commit comments

Comments
 (0)