赞
踩
- 0) 创建远程仓库
- https://gitee.com/(xxx用户名)/(你的仓库名称.git)
-
- git config --global user.name "(此处为你的git用户名)"
- git config --global user.email "(此处为你的git邮箱)"
- (以上两条在你创建仓库后会自动生成)
- 1) 本地git
- 进入到工程的根目录(因为想要通过git管理这个工程)
-
- 以下为在本地配置仓库时的命令以及返回情况(注:此处是在命令行界面进行)
-
- (你的仓库目录) > git status
- fatal: not a git repository (or any of the parent directories): .git
-
- 初始化仓库
- (你的仓库目录) > git init
- Initialized empty Git repository in /Users/(你的电脑用户名)/Desktop/(你的仓库目录)/.git/
-
- 全局配置
- git config --global user.name "(此处为你的git用户名)"
- git config --global user.email "(此处为你的git邮箱)"
-
- (你的仓库目录) > git add *
- 将所有文件【不包含.gitignore中声明的目录或文件】交给git追踪
-
- (你的仓库目录) > git commit -m "first commit"
-
-
- 【注:以下两条命令我们一般不使用的】
- 【【(你的仓库目录) > git reflog
-
- (你的仓库目录) > git reset --hard 版本号
- (输入此条命令可回退到gitee上的上一个)】】
-
- 当代码有重大变动的时候,我们都会执行
- git add *
- git commit ""
-
- 2) 远程git
- 本地仓库与远程仓库绑定
- (你的仓库目录) > git remote add origin https://gitee.com/(xxx用户名)/(你的仓库名称.git)
-
- 将本地仓库状态推送到远程
- (你的仓库目录) > git push origin master
-
- 至此则完成一次本地到gitee云端的代码提交
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。