Git 常用命令
git常用的命令
git config -l # 查看git的配置
git config --system --list # 查看git的系统配置
git config --global --list # 查看用户自己的配置
ssh-keygen -t rsa -C 邮箱
生成的.pub文件的key配置到SSH Keys 中
cd ~ 切换到用户目录
git config --global user.name=""
git congig --global user.email=""
git remote -v 查看远程库的信息
git remote add origin git地址 添加远程库的别名
git init 初始化git仓库
touch README.md 创建readme文件
git add . 添加到缓存区
git commit -m "init project" 提交到本地库
git push -u origin master 推送到远程仓库
git status 查看状态信息
git reflog 查看提交的日志的索引信息
git reflog --oneline
git reset 索引 --hard 根据索引切换版本
基本原理
本地工空间-- 暂存区-- 本地仓库 -- 远程仓库
git add . # 添加到暂存区
git commit # 提交到本地仓库
git push # 推送到远程仓库
Git 项目创建和克隆
git init
git clone url
*.class
*.log
*.lock
#package file
*.jar
*.war
*.ear
target/
#idea
.idea/
*.iml
*.ipr
*.iws
.classpath
.project
.settings/
bin/
tmp/
*rebel.xml*