I’d like to run git in code page IBM-1047 or let it default.
It looks like git is configured to use ISO8859-1.
How can I change it so that I don’t have to use tagging, auto convert, etc.?
Here are the commands I used:
git --version
git version 2.3.5_os390_b013
cd local-repo
created a file using vi testfilez
ls -al
drwxr-xr-x 8 XXXXXX YYYYYYYY 8192 Aug 21 13:35 .git
-rw-r–r-- 1 XXXXXX YYYYYYYY 0 Aug 21 12:14 .gitignore
-rw-r–r-- 1 XXXXXX YYYYYYYY 6 Aug 21 14:02 testfilez
chtag -p testfilez
m IBM-1047 T=off testfilez
git add testfilez
fatal: testfilez added file : file tag (IBM-1047) does not match file attributes (ISO8859-1)
git status
On branch master
Untracked files:
(use “git add …” to include in what will be committed)
.gitignore
testfilez
nothing added to commit but untracked files present (use “git add” to track)
thanks
