我可以提交大量更改,但没有任何内容可以进入 github。
只有当我从菜单中手动单击 PUSH 函数时,它才会推送到 github。
如何让它在提交时自动执行此操作?
这些是我的VS GIT设置:
// Whether git is enabled
"git.enabled": true,
// Path to the git executable
"git.path": null,
// Whether auto refreshing is enabled
"git.autorefresh": true,
// Whether auto fetching is enabled
"git.autofetch": true,
// Confirm before synchronizing git repositories
"git.confirmSync": true,
// Controls the git badge counter. `all` counts all changes. `tracked` counts only the tracked changes. `off` turns it off.
"git.countBadge": "all",
// Controls what type of branches are listed when running `Checkout to...`. `all` shows all refs, `local` shows only the local branchs, `tags` shows only tags and `remote` shows only remote branches.
"git.checkoutType": "all",
// Ignores the legacy Git warning
"git.ignoreLegacyWarning": false,
// Ignores the warning when there are too many changes in a repository
"git.ignoreLimitWarning": false,
// The default location where to clone a git repository
"git.defaultCloneDirectory": null,
// Commit all changes when there are not staged changes.
"git.enableSmartCommit": false,
根据 GitHub 上的此问题,此功能不存在,也不打算添加。
他们建议使用Git挂钩来实现这种行为。
类似于:
#!/usr/bin/env bash
branch_name=`git symbolic-ref --short HEAD`
retcode=$?
# Only push if branch_name was found (my be empty if in detached head state)
if [ $retcode = 0 ] ; then
#Only push if branch_name is master
if [[ $branch_name = "master" ]] ; then
echo
echo "**** Pushing current branch $branch_name to origin ****"
echo
git push origin $branch_name;
fi
fi
您可以查看此答案以了解更多详细信息和选项。
我有一个名为login.js的VUEX存储模块,如下所示 登录。vue代码 登录功能工作,令牌是第一次设置,但当我刷新浏览器的不见了。 在浏览器中,它显示如下 但是如果我通过开发工具提交,它会起作用,状态会变得持久。 类似性质的问题,但不回答这个问题。 vuex提交不提交到存储 Vue2 Vuex提交未提交(不带Vue devtools) 运行Vuex突变,但组件在vue开发工具中手动提交之前不会
在IntelliJ中,我通常使用CTRL K在提交之前调出一种更改审查屏幕。我可以使用F7逐个遍历每个更改。 有人知道VSCode中的等效扩展吗? 我已经尝试过gitLens和git diff历史。两者似乎都不提供该功能。
我有 在我的构建中。gradle我有 但是尽管成功了-到我的数据库中,它并没有添加任何新表。我有postreSQL,其中包含我所有表所在的方案- 我的控制台输出
问题内容: 我正在使用sqlalchemy引擎创建表,但是即使我的create语句执行没有错误,当我尝试预先设置角色时,表也不会显示在数据库中。 对于上下文,我使用的是python 3.6,sqlalchemy版本1.2.17和postgres 11.1,并且角色“ read_write”绝对存在,并且具有在公共场所创建表的所有必要权限(我在pgadmin中运行上面的确切序列没有问题)。 有谁知道
问题内容: 我从这里拉官方的詹金斯码头工人形象。在Jenkins UI中,我创建一个新作业,安装github插件并在作业配置中设置存储库URL。 最后,我保存了詹金斯的更改。 我想按原样创建一个新图像。我停止容器,并将其提交到新映像。 然后,我从新映像开始一个新容器… Jenkins不包含任何更改。 我用 问题答案: 该Dockerfile声明詹金斯主目录的卷 这意味着对Jenkins配置的所有更
在本文章教程中,我们将演示如何查看 Git 存储库的文件和提交文件记录,并对存储库中的文件作修改和提交。 注意:在开始学习本教程之前,先克隆一个存储库,有关如何克隆存储库,请参考: http://www.yiibai.com/git/git_clone_operation.html 在上一步中,我们已经修改了 main.py 文件中的代码,在代码中定义了两个变量并提交代码,但是要再次添加和修改ma