欢迎光临
感谢一路有你

Git tag 与避免重复输入密码

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 

避免本地重复输入账号密码


<code class="">git config --global credential.helper store
执行命令:
git config --global credential.helper store
git pull
输入你的用户名和密码store模式会存储
查看系统存储的用户名个密码
cat ~/.git-credentials 
</code>

tag


<code class="">git tag  //查看tag
 git tag test_tag c809ddbf83939a89659e51dc2a5fe183af384233    //在某个commit 上打tag
 git tag
...
 git push origin test_tag    //!!!本地tag推送到线上
...
 git tag -d test_tag        //本地删除tag
 git push origin :refs/tags/test_tag    //本地tag删除了,再执行该句,删除线上tag

</code>

更新自动加载文件 composer dump-autoload

赞(0) 打赏
未经允许不得转载:王明昌博客 » Git tag 与避免重复输入密码
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮