gitee
在gitee上新建仓库 dxshdpt
全局配置邮箱
配置
git config --global user.email "[email protected]"
git config --global user.name "羊卡车"
- 进入对应目录命令行
- 输入 git init 把这个目录变成一个 git 仓库
- 本地仓库跟远程的仓库建立连接
git remote add origin https://gitee.com/sheep-truck/dxshdpt.git
git remote -v可以查看是否成功
- 新建 .gitignore文件
.idea
node_modules
#忽略不必要的文件,最好放在根目录下
-
暂存代码 git add .
-
提交文件到本地仓库 git commit -m '操作名称'
-
推送代码到远程仓库**git push -u origin "master"
git 操作
基本操作
# 配置
# 全局配置
git config --global user.email "[email protected]"
git config --global user.name "username"
# 仓库配置
git config user.email "[email protected]"
git config user.name "username"
git config --global --list
git config --list
# 新建仓库
git init
# 添加远程仓库
git remote add origin ''
# 查看远程仓库
git remote -v
# 添加文件到暂存区
git add .
# 查看状态
git status
# 忽略文件
.gitignore文件
# 提交
git commit -m 'init'
# 拉取远程代码
git pull origin master
# 强制推送代码到远程仓库
git push -f origin master
# 克隆代码
git clone ''
常用操作
# 列出本地所有分支
git branch
# 新建一个分支,并切换到该分支
git checkout -b 分支名
# 切换分支
git checkout 分支名
# merge其他分支到当前分支
git merge 分支名
# 暂存
git stash
git stash list
git stash pop [stash]
git stash apply [stash]
git stash drop [stash]
标签:git,仓库,stash,学习,--,user,config From: https://www.cnblogs.com/youngtruck/p/18214220