赞
踩
1,本地项目添加git,执行
git init
2,添加文件
git add 文件
3,提交注释
git commit -m "提交信息"
4,查看当前分支
git branch
5,将本地仓库与远程仓库关联起来,并给这个远程仓库起名
git remote add 仓库名
例如:远程仓库地址 https://github.com/example/project.git
执行:git remote add origin https://github.com/example/project.git
6,将本地分支的提交推送到远程分支,并同时设置上游分支关联
git push -u
7,查看当前工作目录和暂存区状态
git status
8,暂存当前工作目录和索引的状态
git stash
9,将最近一次暂存的更改应用回当前工作目录,并从暂存列表中删除该暂存项
git stash pop
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。