git
heshuaicsdn
写的比较少,希望大家看后,能对大家有所帮助。
展开
-
Reinitialized existing Git repository inhttps://mp.csdn.net/postedit
Reinitialized existing Git repository in xxx/xx/xxx/xx这是因为你隐藏了.git 文件。 所以看起来没有了.git 文件。 但是不影响git的使用。如果你还是觉得看到.git比较舒服的话,那么就: 然后显示和隐藏这一块有个隐藏的项目 勾选上就好了。...原创 2018-08-07 15:34:55 · 12042 阅读 · 2 评论 -
git分支相关命令
查看分支:git branch创建分支:git branch 切换分支:git checkout 创建+切换分支:git checkout -b原创 2018-09-28 15:15:39 · 472 阅读 · 6 评论 -
解决git每次提交都得输入用户名密码的问题
命令:git remote -v查看当前的是 https 还是ssh 提交方式生成密钥ssh:命令:ssh-keygen -t rsa -C "511666426@qq.com"一路回车查看生成的密钥ssh:命令:cat ~/.ssh/id_rsa.pub添加密钥:github 网站 --> 设置 --> ssh and GPG keys -->把查看的密钥复...原创 2018-10-08 10:24:22 · 715 阅读 · 0 评论 -
git拉取远程分支到本地
查看远程分支:git branch -a查看本地分支:git branch场景:假如现在远程分支有一个:a我们本地没有;··1.查看远程分支有哪些:git branch -a2.然后切换到这个分支:git checkout remotes/origin/a出来了这么一段话:$ git checkout remotes/origin/aNote: checking ou...原创 2018-10-09 15:01:25 · 7388 阅读 · 1 评论 -
There is no tracking information for the current branch
有时候新创建的分支执行git pull会出现:$ git pull There is no tracking information for the current branch.Please specify which branch you want to merge with.See git-pull(1) for details. git pull <remot...原创 2018-10-09 15:13:07 · 1361 阅读 · 0 评论