zoukankan      html  css  js  c++  java
  • 终端make命令和Git学习

    • make
      •   make -B(both changed and unchanged files)/-d(describe)/-C(changeDir)/-f(file which renamed)
    •   git config --system(/etc/gitconfig);git config --global(~/.gitconfig);git config(.git/config)
    • git init(initialization)/git clone
    • git commit -v(take in all changed part in comment mode)
    • git rm(remove file from the git repository) -cached(only remove what's cached)[是git自己的文件模式扩展匹配方式用法,递归]
    • git mv/git log -p() -stat(just states) -pretty=format(定制格式) --since --until --author --n --before --after --grep(提交说明中的关键字) --committer --no-merges(未合并) -- Dir/(only after the pointed Dir)
    • git add暂存git reset HEAD取消暂存
    • git remote add [shortname] [url]
    • git tag
    • git branch -b=git branch&git checkout
    • git merge-->>git rebase
  • 相关阅读:
    web.xml
    web.xml hello1代码分析
    annotation
    injection
    container
    build tool
    version control
    url与uri的区别
    函数式语言
    http协议解析过程
  • 原文地址:https://www.cnblogs.com/burn19/p/7843538.html
Copyright © 2011-2022 走看看