Git常用命令

这是一篇自从用Git以来备查的写在evernote上整理后的笔记。

基本使用

Git安装后。

第一步:设置名称和邮件

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

第二步:设置ssh-key,这个直接参考Github的帮助文件

复制仓库

git clone git@github.com:foo/bar.git

分支相关 Branch and Checkout

git checkout -b branch_name // 创建分支并切换到develop
git branch -r               // 远程分支列表
git branch -a               // 所有分支
git branch -vv              // 查看本地与远程的对应关系

git checkout branch_name    // 切到某个分支
git checkout -              // 切到上个分支,极好用

Continue reading Git常用命令