CPU73050: remove home lines (hopefully made it automatic)

This commit is contained in:
Lephenixnoir 2020-06-26 17:38:02 +02:00
parent 8b12ef3fd4
commit 94d7ca4854
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
4 changed files with 11 additions and 5 deletions

1
emulator/.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
CPU73050/rc filter=remove-home-lines

3
emulator/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Original DLL and related ELF
CPU73050.dll
CPU73050.elf

View File

@ -301,12 +301,10 @@
"e diff.to = 0"
"e dir.dbgsnap = ."
"e dir.depth = 10"
"e dir.home = /home/el"
"e dir.libs = "
"e dir.magic = /usr/share/radare2/4.4.0/magic"
"e dir.plugins = /usr/lib/radare2/4.4.0"
"e dir.prefix = /usr"
"e dir.projects = /home/el/Projects/fxos-library/emulator"
"e dir.source = "
"e dir.tmp = "
"e dir.types = /usr/include"
@ -341,13 +339,13 @@
"e esil.verbose = 0"
"e file.desc = "
"e file.info = true"
"e file.lastpath = /home/el/Documents/PC/OS Émulateur G90 3.00/CPU73050.dll"
"e file.lastpath = CPU73050.dll"
"e file.loadalign = 0x00000400"
"e file.location = "
"e file.md5 = "
"e file.offset = "
"e file.openmany = 1"
"e file.path = /home/el/Documents/PC/OS Émulateur G90 3.00/CPU73050.dll"
"e file.path = CPU73050.dll"
"e file.type = pe"
"e fs.view = normal"
"e graph.aeab = false"
@ -470,7 +468,6 @@
"e pdb.autoload = 0"
"e pdb.extract = 1"
"e pdb.server = https://msdl.microsoft.com/download/symbols"
"e pdb.symstore = /home/el/.local/share/radare2/pdb"
"e pdb.useragent = Microsoft-Symbol-Server/6.11.0001.402"
"e prj.files = false"
"e prj.git = false"

5
emulator/README.md Normal file
View File

@ -0,0 +1,5 @@
Add the following entries to the repositor's configuration to have Git
automatically ignore the lines with /home in the project file.
% git config --local filter.remove-home-lines.clean 'sed "/\/home\// d"'
% git config --local filter.remove-home-lines.smudge cat