在进行提交时,如何确保git配置文件被推送到repo?

时间:2017-10-06 09:49:42

标签: git github config

我在工作机器上更改了git配置文件。

我改变了一些代码,提交了它。

当我回家时,如何将配置文件拉入我的家庭电台?

1 个答案:

答案 0 :(得分:0)

git var dynamodb = new AWS.DynamoDB({ region: 'us-east-1', endpoint: "http://localhost:8000" }); var params = { }; function doPrint(response) { if (response.error) ppJson(response.error); // an error occurred else { ppJson(response.data); // successful response } } console.log("List of tables"); dynamodb.listTables(params) .on('complete', doPrint) .send(); 文件位于存储库的config文件夹中。此文件夹不是存储库本身的一部分。因此,.git文件中的更改将不会被提交和推送,随后,您将无法通过config获取它。

如果您想要通过远程存储库共享配置文件,请查看this question