git学习记录

2016-02-28

git --version
git config --global user.name ***/email

git init
git status
git add ...
git diff
git commit -m "说明"
git push origin

ssh-keygen –t rsa –C “邮箱地址”
git config --global user.username "Shen-Yu"
git config --global credential.helper store 记住密码
git config credential.helper 'cache --timeout=3600' 设置记住密码的时间
git remote add origin 远程仓库地址
git clone 地址
git remote add upstream 原始仓库地址
git remote -v(检查)

分支:
git checkout -b 创建分支并切换过去
git checkout master 切换到主分支
git branch -b 把分支删掉

更新与合并:
git pull 本地更新至最新改动
git merge 合并其他分支到当前分支

.gitignore 要忽略的文档

你可能感兴趣的:(git学习记录)