摘要:
在远程主机的 ~/.vscode-server/data/Machine/settings.json 中,添加你的配置。 例: { "python.condaPath": "/path/to/conda", "python.defaultInterpreterPath": "/path/to/pyt 阅读全文
摘要:
首先在服务器建立一个裸仓库 user@remote: mkdir repo.git cd repo.git git init --bare 裸仓库不包含工作区。也就是说,它没有项目的文件副本,而仅仅是一个版本库的存储空间。 在本地添加刚刚创建的仓库为远程仓库: git remote add orig 阅读全文