git remote -v
查看远程仓库地址
git init
初始化git仓库
git add .
添加目录下所有文件
git commit -m 'first commit'
提交一个版本代码
git remote add origin https://github.com/wupeixuan/repo.git
使用远程存储库的链接将其添加为本地 git 项目的来源
git push origin master
将本地的分支版本上传到远程master分支并合并,origin为远程主机名
git pull origin master
从远程主机origin拉取master分支,与本地当前分支合并
git log
查看git日志
git branch branch_name
新建一个branch
git checkout branch_name
进入一个branch
git merge branch_name
把一个branch合并到当前branch
git branch -d branch_name
删除一个branch
git tag tag_name
为当前代码建立一个标签
git checkout tag_name
切换到某个标签的代码状态
git reset --hard 目标版本号
回退到以前某个版本(版本号用git log看)
git revert -n 目标版本号
新建一个和以前某个版本相同的版本
git reset HEAD^ -- filename
git reset HEAD^ -- filename # for a specific file
切换到最新提交之前的代码版本