赞
踩
此篇博客许多内容均零零散散来源于网络,均为在项目代码仓建立时遇到的问题。
这里主要用于记录其中的一些技巧操作。
git checkout .
参考:https://www.cnblogs.com/liujianzuo888/articles/6025793.html
设置记住密码(默认15分钟):
git config --global credential.helper cache
设置一个小时:
git config credential.helper 'cache --timeout=3600'
长期存储密码:
git config --global credential.helper store
如果你正在使用 ssh 而且想体验 https 带来的高速,可以按照下面的步骤操作:
切换到项目目录下 :
cd projectfile/
移除远程ssh方式的仓库地址
git remote rm origin
增加https远程仓库地址
git remote add origin http://yourname:password@git.oschina.net/name/project.git
git clone -b <branch> <remote_repo>
git clone -b my-branch git@github.com:user/myproject.git
参考:https://stackoverflow.com/questions/1911109/how-do-i-clone-a-specific-git-branch
git push origin dbg_lichen_star:dbg_lichen_star
git pull origin develop:develop
如果是要与本地当前分支merge,则冒号后面的<本地分支名>可以不写。
查看远程+本地分支:
git branch -a
查看本地分支:
git branch
创建新分支:
git checkout -b my_branch origin/my_branch
切换分支:
git checkout master
git 设置和取消代理:
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
https://www.jianshu.com/p/f7451177476a
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。