Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

cmder - I can't create a global gitignore in my terminal. touch ~/.gitignore gives an error

I am trying to create a global .gitignore file with this command:

touch ~/.gitignore

but in my terminal (Cmder) gives this message: "touch: cannot touch '~/.gitignore': No such file or directory"

I have changed to windows terminal default (Command Prompt) and it says: "'touch' is not recognized as an internal or external command, operable program or batch file."

What I am doing wrong or what can I do to solve this?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are using linux syntax. Now, even though touch is not understood by cmd prompt, it is a command understood by cmder but expression ~/.gitignore is still linux way of saying things.

What you can do on cmd prompt, I guess also would work on cmder (edit: doesn't seem to work for cmder):

copy con "%USERPROFILE%.gitignore"
[press F6 and enter after that]

For cmder, this could work:

touch "%USERPROFILE%.gitignore"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...