常用命令
git clone ${url} 克隆远程库到本地
git status 查看当前状态
暂存功能git stash
git stash 暂存当前修改未提交的代码
git stash pop 将最新暂存的一版代码 拿出来
git stash list 查看暂存列表 先进后出 后进先出
git stash drop 不需要的暂存可直接删除
gitignore更改后生效
git rm -r --cached . #清除缓存
git add . #重新trace file
git commit -m "update .gitignore" #提交和注释
git push origin master #可选,如果需要同步到remote上的话
git配置
-- 修改全局git 提交信息
git config --global user.name "xxx"
git config --global user.email "xxxx"
-- 修改局部git 提交信息
git config --local user.name "xxx"
git config --local user.email "xxxx"
网友评论