一些 Git 日常使用到的命令。
查看状态
添加修改
提交修改
1
| git commmit -m "Comment"
|
或者全部提交
1
| git commit -am "Comment"
|
提交到GitHub
1 2 3
| git remote add origin [email protected]:repos/xxx/xxx/xxx.git git push origin git push origin master
|
Git添加删除源
1 2 3
| git remote remove origin git remote add origin http://github.com/user/repo.git git push --set-upstream origin master
|
Git查看日志
1 2 3 4 5
| git log --pretty=format:"%an, %ae - %s" git log --tags --no-walk --pretty="%ci %h %D"
git describe --tags `git rev-list --tags --max-count=1`
|
Git创建分支
1 2 3 4 5
| git branch [branch name] git checkout [branch name] git push -u origin [branch name]
git push --set-upstream origin [branch name]
|
查看远程分支
Git删除分支
1 2 3 4 5 6 7
| git branch -D [branch name]
git push origin --delete [branch name]
git push origin -d [branch name]
|
Git查看代码提交的用户列表
1
| git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r
|
统计某人的代码提交量
1
| git log --author="$(git config --get user.name)" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }' -
|
创建一个空分支
注意:这里没有文件提交,新分支是看不到的
1 2 3 4
| git checkout --orphan [branch name] git rm -rf . git commit -am 'Initialize'
|
禁止某邮箱提交的解决办法
提交时提示禁止使用某邮箱名,原因是在global配置了通用的邮箱名和用户信息,在提交某些有限制的源时会提示如下的信息
You cannot push commits with committer “xxx@xxx.com“ ….
解决办法是执行以下代码后再提交
1
| git commit --amend --reset-author --no-edit
|
如果还是不行,则尝试现在源目录下设置用户名和邮箱,然后再进行提交
设置拉取代码的换行(Windows和macOS混用时)
1 2 3
|
git config --global core.autocrlf input
|