shell工具安装
在mac环境下推荐安装iterm2和oh my zsh,默认情况下oh my zsh已经集成了git plugin,使用效果非常棒~
常用命令
拉取远程分支:git clone
查看本地代码分支:git branch
查看远程代码分支:git branch -r
切换本地代码分支:git checkout <branch_name>
创建新的代码分支并进行切换:git checkout -b <branch_name>
提交代码:git commit -am "comment"
将代码提交到远程分支:git push origin <branch_name>
将远程分支拉到本地:git fetch origin <branch_name>
取回远程分支代码并合并:git pull origin <remote_branch_name>:<local_branch_name>
临时存储修改内容:git stash
取回临时存储的内容:git stash pop
.gitognore文件配置
语法规则
! 非,表示不忽略
* 匹配多个字符
? 匹配单个字符
[] 匹配字符集合
/ 表示目录
示例
.idea
target/
*.class
*.iml
含义:
- 忽略所有以class和iml结尾的文件
- 忽略所有的target目录
- 忽略.idea文件
网友评论