尝试 scp .gitignore 文件时“不是常规文件”

尝试 scp .gitignore 文件时“不是常规文件”

远程目录已包含一个 .gitignore 文件,我想覆盖该文件并上传一个新文件。做完后:

scp -P[portnumber] [email protected]:path/for/file/ location/of/file/.gitignore

我收到以下消息:

not a regular file

我需要做什么才能复制“非常规文件”并覆盖现有文件?考虑到我在任何地方都找不到答案,我认为这个问题非常基本。谢谢你!

答案1

我的位置和目的地倒退了。我把它改为:

scp -P[portnumber] /path/to/.gitignore [email protected]:/path/to/destination 

成功了!

相关内容