Alan's Blog

Git基本用法

进入项目文件夹:

  1. git init 初始化项目
  2. git add . 把工作区代码加入暂存区
  3. git commit -m “this is a comment” 提交本地仓库
  4. git remote add origin git@xxx.git
  5. git push

git checkout [file] # 恢复暂存区的指定文件到工作区
git diff
git pull
git push
git fetch
git remove -v
git clone
git log # 查看提交日志
git show # 显示每次提交的内容
git stash # 暂存