关系图
命令集
$ git init #创建本地仓库
$ git clone [url] #下载一个仓库
$ git status #查看状态
$ git add . #将当前目录所有文件添加到git暂存区
$ git commit -m "my commit" #提交并备注提交信息
$ git log #查看版本历史
$ git push #将本地提交推送到远程仓库
$ git pull #从远程仓库拉取代码,合并到本地
$ git reset [commit] #回退到某次commit,保留本地修改
$ git reset --hard [commit] #回退到某次commit,丢弃所有本地修改
$ git branch #列出所有分支
$ git branch [branch-name] #创建分支
$ git checkout [branch-name] #切换分支
$ git merge [branch] #合并指定分支到当前分支
$ git branch -d [branch-name] #删除分支
git remote -v 查看远程仓库地址
git remote set-url origin https:
git branch -a
git push origin –delete 分支名
git branch –d 分支名
git branch –D 分支名
git rm -r --cached 文件夹名称
实践
1.git初始化本地仓库
git init
2.将本地代码提交到本地仓库中
git add *
git commit -m '提交内容的描述'
3.将本地仓库与远程仓库进行绑定,并且push
git remote add origin 你的远程仓库的URL
git remote add origin https:
$ git pull origin master
$ git pull origin master --allow-unrelated-histories
git push origin master
|