码迷,mamicode.com
首页 > 其他好文 > 详细

Git tag 与避免重复输入密码

时间:2019-11-15 22:34:08      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:auto   执行命令   tps   git pull   关注   origin   min   test   用户名   

## 避免本地重复输入账号密码 ``` git config --global credential.helper store 执行命令: git config --global credential.helper store git pull 输入你的用户名和密码store模式会存储 查看系统存储的用户名个密码 cat ~/.git-credentials ``` ## tag ``` 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 ``` 更新自动加载文件 `composer dump-autoload` > 更多精彩文章请关注 [王明昌博客](https://www.wangmingchang.com)

Git tag 与避免重复输入密码

标签:auto   执行命令   tps   git pull   关注   origin   min   test   用户名   

原文地址:https://www.cnblogs.com/wmc1125/p/11869621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!