git 和 github
2018-02-02 本文已影响0人
踌躇月光
分支管理
查看本地分支
git branch
查看远程分支
git branch -r
查看所有分支
git branch -a
创建分支
git branch [name]
切换分支
git checkout [name]
将新分支推送到github
git push origin [name]
删除本地分支
git branch -d [name]
删除github远程分支
git push origin :[name]
分支名前的冒号代表删除
Linux下保存 git 账号密码 [1]
通过文件方式
在用户目录 ~ 下, touch创建文件 .git-credentials
touch .git-credentials
编辑该文件,输入如下内容并保存
https://{username}:{password}@github.com
其中 username 和 password 分别表示用户名和密码,自行替换
执行命令,将密码保存。
git config --global credential.helper store
可以看到~/.gitconfig文件,会多了一项:
[credential]
helper = store
通过缓存方式
git版本需要>=1.7.10
git config --global credential.helper cache
# 默认缓存密码15分钟,可以改得更长, 比如1小时
git config --global credential.helper 'cache --timeout=3600'